/**
 * Game Filter Dropdown Styles
 * All classes use 'ml-' prefix to avoid conflicts
 */

.ml-game-filter-dropdown {
    position: relative;
    display: inline-block;
    min-width: 280px;
    z-index: 1;
}

.ml-game-filter-main-btn {
    width: 100%;
    padding: 12px 16px;
    background: white;
    color: #333;
    border: 2px solid #20B2AA;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-family: Arial, sans-serif;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    user-select: none;
}

.ml-game-filter-main-btn:hover {
    background-color: #f8f9fa;
}

.ml-game-filter-dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 280px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 8px;
    z-index: 1000;
    top: 100%;
    left: 0;
    margin-top: 5px;
    border: 1px solid #e0e0e0;
    max-height: 300px;
    overflow-y: auto;
}

.ml-game-filter-dropdown-content.ml-show {
    display: block;
}

.ml-game-filter-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
    font-size: 14px;
    color: #333;
    font-family: Arial, sans-serif;
    user-select: none;
}

.ml-game-filter-item:last-child {
    border-bottom: none;
}

.ml-game-filter-item:hover {
    background-color: #f8f9fa;
}

.ml-game-filter-item.ml-active {
    background-color: #f0f8ff;
    color: #20B2AA;
    font-weight: bold;
}
