/* Styling for the sort dropdown container */
.cps-sort-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

/* Label for the dropdown */
.cps-sort-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #444;
    white-space: nowrap;
}

/* The actual select element */
.cps-sort-dropdown {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Styling on hover */
.cps-sort-dropdown:hover {
    border-color: #b0b0b0;
}

/* Styling on focus */
.cps-sort-dropdown:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

/* Basic option styling */
.cps-sort-dropdown option {
    font-family: 'Inter', sans-serif;
}