.historico-search {
    margin: 1.5rem 0;
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-radius: .5rem;
    background: #f8f9fa;
}

.historico-search-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.historico-search-form > label,
.historico-form-label {
    display: block;
    margin-bottom: .4rem;
    font-weight: 700;
}

.historico-search-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .5rem;
    align-items: end;
}

.historico-date-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    gap: .5rem;
    align-items: end;
}

.historico-date-controls label {
    display: block;
    margin-bottom: .2rem;
    font-size: .875rem;
}

.historico-clear {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 700;
}

.historico-alert,
.historico-empty {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: .375rem;
}

.historico-alert {
    color: #842029;
    background: #f8d7da;
    border: 1px solid #f1aeb5;
}

.historico-empty {
    color: #0a3622;
    background: #d1e7dd;
    border: 1px solid #a3cfbb;
}

.historico-summary {
    color: #495057;
}

.historico-table .badge {
    margin: .1rem;
}

.historico-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .35rem;
    margin: 1.5rem 0;
}

.historico-pagination a,
.historico-pagination span:not(.historico-pagination-gap) {
    min-width: 2.5rem;
    padding: .45rem .7rem;
    border: 1px solid #198754;
    border-radius: .375rem;
    text-align: center;
    text-decoration: none;
}

.historico-pagination a:hover,
.historico-pagination .active {
    color: #fff;
    background: #198754;
}

.historico-pagination span[aria-disabled="true"] {
    color: #6c757d;
    border-color: #ced4da;
}

.historico-pagination-gap {
    padding: .45rem .2rem;
}

.historico-image {
    margin-top: 1.5rem;
}

@media (max-width: 767.98px) {
    .historico-search-grid,
    .historico-date-controls {
        grid-template-columns: 1fr;
    }

    .historico-table,
    .historico-table tbody,
    .historico-table tr,
    .historico-table td {
        display: block;
        width: 100%;
    }

    .historico-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .historico-table {
        border: 0;
    }

    .historico-table tbody tr {
        margin-bottom: 1rem;
        border: 1px solid #dee2e6;
        border-radius: .5rem;
        overflow: hidden;
        box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    }

    .historico-table tbody td {
        display: grid;
        grid-template-columns: minmax(7.5rem, .8fr) minmax(0, 1.5fr);
        gap: .75rem;
        align-items: center;
        border-width: 0 0 1px;
        text-align: left;
    }

    .historico-table tbody td:last-child {
        border-bottom: 0;
    }

    .historico-table tbody td::before {
        content: attr(data-label);
        font-weight: 700;
    }
}

@media (max-width: 420px) {
    .historico-search-controls {
        grid-template-columns: 1fr;
    }

    .historico-table tbody td {
        grid-template-columns: 1fr;
        gap: .25rem;
    }
}
