﻿.custom-dropdown {
    position: relative;
    display: inline-block;
    font-family: sans-serif;
}

    

.selected-btn {
    position: relative; /* pseudo-element için gerekli */
    background-color: #1fa84f;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    min-width: 100px;
    text-align: left;
    transition: background-color 0.3s;
}
    .selected-btn:hover {
        background-color: #eff0ef;
        color: black;
    }

 
    .selected-btn::after {
        content: "▼"; 
        position: absolute;
        right: 12px; 
        top: 50%;
        transform: translateY(-50%);
        font-size: 10px;
        pointer-events: none; 
        color: white;
    }

    .selected-btn:hover::after {
        color: black; 
    }

.dropdown-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1fa84f;
    border-radius: 8px;
    margin-top: 4px;
    padding: 0;
    list-style: none;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
}

    .dropdown-options li {
        padding: 8px 16px;
        cursor: pointer;
        color: white;
        transition: background-color 0.2s, color 0.2s;
    }

        .dropdown-options li:hover {
            background-color: #eff0ef;
            color: black;
            border-radius: 8px;
        }
