.daterange-filter {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.daterange-filter label {
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
}

.daterange-filter .input-icon-group {
    position: relative;
    width: 100%;
}

.daterange-filter input[type="text"] {
    border: 1px solid var(--tx-border, #e0e0e0);
    border-radius: 4px;
    padding: 8px 36px 8px 12px;
    font-size: 1rem;
    color: #333;
    background: var(--tx-light-bg, #f8f9fa);
    box-shadow: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    min-height: 40px;
    appearance: none;
    width: 100%;
    line-height: 1.5;
}

.daterange-filter input[type="text"]:focus {
    border-color: var(--tx-primary, #002E6D);
    outline: none;
    box-shadow: 0 0 0 2px rgba(154, 202, 235, 0.15);
    background: #fff;
}

.daterange-filter input[type="text"]:hover {
    border-color: var(--tx-accent, #9ACAEB);
    background: #f5faff;
}

.daterange-filter .daterangepicker {
    font-size: 1rem;
    border-radius: 8px !important;
    box-shadow: 0 4px 16px rgba(0,46,109,0.08) !important;
    border: 1.5px solid var(--tx-accent, #9ACAEB) !important;
    overflow: hidden;
}

.input-icon-calendar {
    position: absolute;
    right: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
    pointer-events: none;
    color: #222 !important;
    font-size: 1.2em;
    font-weight: 400;
    height: 22px;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.col-md-3.filter-item label[for="daterange"] {
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
    display: block;
}

.col-md-3.filter-item .input-icon-group {
    position: relative;
    width: 100%;
}

.col-md-3.filter-item input[type="text"] {
    border: 1px solid var(--tx-border, #e0e0e0);
    border-radius: 4px;
    padding: 8px 36px 8px 12px;
    font-size: 1rem;
    color: #6c757d;
    background: var(--tx-light-bg, #f8f9fa);
    box-shadow: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    min-height: 40px;
    appearance: none;
    width: 100%;
    min-width: 220px;
    line-height: 1.5;
}

.col-md-3.filter-item input[type="text"]:focus {
    border-color: var(--tx-primary, #002E6D);
    outline: none;
    box-shadow: 0 0 0 2px rgba(154, 202, 235, 0.15);
    background: #fff;
}

.col-md-3.filter-item input[type="text"]:hover {
    border-color: var(--tx-accent, #9ACAEB);
    background: #f5faff;
}

.col-md-3.filter-item .daterangepicker {
    font-size: 1rem;
    border-radius: 8px !important;
    box-shadow: 0 4px 16px rgba(0,46,109,0.08) !important;
    border: 1.5px solid var(--tx-accent, #9ACAEB) !important;
    overflow: hidden;
}

.col-md-3.filter-item input[type="text"]:focus + .input-icon-calendar {
    color: #222 !important;
}

/* Solo estilos para el input de rango de fechas */
input#daterange {
    border: 1px solid var(--tx-border, #e0e0e0);
    border-radius: 4px;
    padding: 8px 36px 8px 12px;
    font-size: 1rem;
    color: #6c757d;
    background: var(--tx-light-bg, #f8f9fa);
    box-shadow: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    min-height: 40px;
    appearance: none;
    width: 100%;
    min-width: 220px;
    line-height: 1.5;
}
input#daterange:focus {
    border-color: var(--tx-primary, #002E6D);
    outline: none;
    box-shadow: 0 0 0 2px rgba(154, 202, 235, 0.15);
    background: #fff;
}
input#daterange:hover {
    border-color: var(--tx-accent, #9ACAEB);
    background: #f5faff;
}
.daterangepicker {
    font-size: 1rem;
    border-radius: 8px !important;
    box-shadow: 0 4px 16px rgba(0,46,109,0.08) !important;
    border: 1.5px solid var(--tx-accent, #9ACAEB) !important;
    overflow: hidden;
}
.input-icon-calendar {
    position: absolute;
    right: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
    pointer-events: none;
    color: #222 !important;
    font-size: 1.2em;
    font-weight: 400;
    height: 22px;
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
input#daterange:focus + .input-icon-calendar {
    color: #222 !important;
}
/* SVG calendar icon: usa stroke-width: 1 para que sea delgado */
.input-icon-calendar svg {
    stroke-width: 1 !important;
}
