/* Fix for select dropdown chevrons */
/* Find and style the existing chevron SVG */
select + svg,
select ~ svg,
.relative svg {
    position: absolute !important;
    right: 1rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    pointer-events: none !important;
    width: 1rem !important;
    height: 1rem !important;
}

/* Ensure select has proper padding */
select {
    padding-right: 2.5rem !important;
    cursor: pointer;
}