/* ============================================
   DIRECTION DROPDOWN MENU
   ============================================ */

.gvp-direction-dropdown {
    position: absolute;
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.5rem;
    padding: 0.5rem;
    z-index: 1000;
    min-width: 200px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 
                0 4px 6px -2px rgba(0, 0, 0, 0.2);
    animation: gvpDropdownSlideIn 0.2s ease;
}

.gvp-direction-dropdown::-webkit-scrollbar {
    width: 8px;
}

.gvp-direction-dropdown::-webkit-scrollbar-track {
    background: #0f172a;
    border-radius: 4px;
}

.gvp-direction-dropdown::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

.gvp-direction-dropdown::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

@keyframes gvpDropdownSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Додаткові стилі для кнопки додавання напрямків */
.gvp-add-direction-btn {
    transition: all 0.2s ease !important;
}

.gvp-add-direction-btn:hover {
    background-color: #2563eb !important;
    border-color: #2563eb !important;
    border-style: solid !important;
    color: #ffffff !important;
    transform: scale(1.1) !important;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

.gvp-add-direction-btn:active {
    transform: scale(1.05) !important;
}

