/* Working CSS - Force show dropdown properly */
div.tournament-header div.tournament-dropdown-container div.tournament-options-list.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    z-index: 99999 !important;
    display: block !important;
    background: white !important;
    border: 1px solid #bbf7d0 !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    max-height: 400px !important;
    transition: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    margin-top: 8px !important;
}

/* Disable transitions to prevent animation issues */
div.tournament-options-list {
    transition: none !important;
}
