/* Currency Dropdown Styles */
.dropdown-usdcad {
    position: relative;
    z-index: 1000;
}


.dropdown-options-usdcad {
    position: absolute;
    top: 100%;
    left: -60px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 120px;
    display: none;
    z-index: 1001;
}

.dropdown-options-usdcad.active {
    display: block !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-option-usdcad {
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    font-size: 14px;
    white-space: nowrap;
}

.dropdown-option-usdcad:hover {
    background: #f8f9fa;
}

/* Mobile styles */
@media (max-width: 768px) {
    .dropdown-usdcad {
        margin: 0 10px;
    }
    
    .dropdown-toggle-usdcad {
        padding: 6px 10px;
    }
    
    .dropdown-options-usdcad {
        min-width: 100px;
    }
} 