.custom-select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 300px;
}

.custom-select-wrapper select {
    background-color: #fff;
    border: 1px solid var(--accent);
    border-radius: 999px;
    padding: 6px 40px 6px 20px;
    font-size: 0.875rem;
    font-weight: bold;
    color: #1a1a1a;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.custom-select-wrapper select:focus {
    outline: none;
    border-color: var(--accent);
}

.custom-select-icon {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
