﻿/* GRID PRINCIPAL */
.panel-filtros-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 1rem;
    align-items: stretch;
}

/* CARDS */
.filtro-card {
    background: var(--rz-base-default);
    border-radius: 14px;
    padding: 1rem;
    border: 1.5px solid var(--rz-secondary-lighter);
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

    /* REPORTE */
    .filtro-card.reporte .rz-dropdown {
        width: 100% !important;
    }

/* FECHAS */
.tiempo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
}

/* ACCIONES */
.filtro-card.acciones {
    justify-content: center;
    gap: .6rem;
}

    .filtro-card.acciones .rz-button {
        width: 100%;
    }

/* TARJETA SELECCIONADA */
.selected-report-card {
    display: flex;
    gap: .6rem;
    align-items: center;
    padding: .5rem .6rem;
    border-radius: 10px;
    background: rgba(var(--rz-primary-rgb), .08);
    border-left: 4px solid var(--rz-primary);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .panel-filtros-grid {
        grid-template-columns: 1fr;
    }
}
