﻿.custom-select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 300px;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none; /* Safari, Chrome */
    -moz-appearance: none; /* Firefox */
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    font-size: 16px;
    color: #333;
    width: 100%;
    cursor: pointer;
    padding-right: 40px; 
}

.custom-select:focus {
    outline: none;
    border-color: #999;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.custom-select-wrapper::after {
    content: '\25BC'; /* Unicode dla strzałki w dół */
    font-size: 16px;
    color: #333;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Strzałka nie jest klikalna */
}
