/* =======================================================
   SELECT DROPDOWN - DARK STYLE (CSS ONLY)
======================================================= */

select {
    width: 100%;
    padding: 8px 35px 8px 10px;
    font-size: 14px;
    color: rgb(220, 220, 220);
    background-color: rgb(20, 20, 30);
    border: 1px solid rgb(50, 50, 60);
    border-radius: 5px;
    appearance: none; /* entfernt Standard-Pfeil */
    cursor: pointer;

    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

/* Hover */
select:hover {
    border-color: rgb(255, 215, 0);
}

/* Focus */
select:focus {
    outline: none;
    border-color: rgb(255, 215, 0);
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

/* Optionen (eingeschränkt stylbar!) */
select option {
    background-color: rgb(20, 20, 30);
    color: rgb(220, 220, 220);
}