/* Form elements styling */
.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
}

.btn-primary {
    background: #003f87;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background: #0056b3;
}

/* =========================================================
 * Professional Custom Select & Filter Styling
 * Uses a single crisp vector SVG chevron (never duplicates)
 * ========================================================= */
select,
.custom-select,
.filter-select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2364748b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") !important;
    background-position: right 0.65rem center !important;
    background-repeat: no-repeat !important;
    background-size: 1.2rem 1.2rem !important;
    padding-right: 2.25rem !important;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-image 0.2s ease;
}

select:hover,
.custom-select:hover,
.filter-select:hover {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%230056b3' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") !important;
}

select:focus,
.custom-select:focus,
.filter-select:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%230056b3' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") !important;
    outline: none !important;
}

/* Custom Filter Group styling */
.filter-group {
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 0.25rem 0.5rem 0.25rem 0.75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease;
}

.filter-group:hover,
.filter-group:focus-within {
    border-color: #93c5fd;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.08);
}


