/* Kontener dla selektora */
.theme-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-selector label {
    font-weight: bold;
    color: #fff;
    /* Dostosuj do tła strony */
}

/* Stylizacja samego selecta */
.custom-select {
    appearance: none;
    /* Usuwa domyślny wygląd systemowy */
    -webkit-appearance: none;
    -moz-appearance: none;

    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 35px 8px 15px;
    font-size: 14px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;

    /* Dodanie własnej strzałki */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

/* Efekt najechania */
.custom-select:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #007bff;
    /* Kolor Twojego motywu */
}

/* Stylizacja opcji (uwaga: ograniczone możliwości w samym CSS) */
.custom-select option {
    background-color: #222;
    /* Tło listy rozwijanej */
    color: white;
}