.dadata-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ad1457;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(173, 20, 87, 0.15);
    margin-top: 2px;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
}

.dadata-suggestion {
    padding: 12px;
    border-bottom: 1px solid #f8bbd9;
    cursor: pointer;
    font-size: 14px;
    color: #880e4f;
    transition: all 0.2s ease;
    font-family: 'Roboto', sans-serif;
}

.dadata-suggestion:hover {
    background: #f8bbd9;
    color: #880e4f;
}

.dadata-suggestion:last-child {
    border-bottom: none;
}

.dadata-suggestion.active {
    background: #f8bbd9;
    color: #880e4f;
}

@media (max-width: 520px) {
    .dadata-suggestions {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        bottom: auto !important;
        transform: none !important;
        margin-top: 2px !important;
        max-height: 150px !important;
        z-index: 99999 !important;
    }
}