/* Contenedor principal */
.frnk-reporte-container {
    font-family: 'Poppins';
    color: #333;
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
}

/* Título principal */
.frnk-reporte-container h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #222;
    text-align: center;
}

/* Formulario de filtros */
.frnk-reporte-filtros {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.frnk-filtro-item label {
    font-weight: 600;
    margin-right: 5px;
}

.frnk-filtro-item input[type="date"] {
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.frnk-filtro-item input[type="submit"] {
    padding: 8px 20px;
    border-radius: 6px;
    background-color: #0073aa;
    color: #fff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.frnk-filtro-item input[type="submit"]:hover {
    background-color: #005f8d;
}

/* Contenedor de tarjetas */
.frnk-reporte-totales {
	margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Tarjetas individuales */
.frnk-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 20px;
    min-width: 220px;
    flex: 1;
    transition: transform 0.2s, box-shadow 0.2s;
}

.frnk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.frnk-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #03012d;
}

/* Listas dentro de las tarjetas */
.frnk-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.frnk-card ul li {
    background: #f7f9fc;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.frnk-card ul li strong {
    color: #444;
}

/* Total de ventas grande */
.total-ventas p {
    font-size: 32px;
    font-weight: 700;
    color: #0073aa;
    text-align: center;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .frnk-reporte-totales {
        flex-direction: column;
        align-items: center;
    }
}


.frnk-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.frnk-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    position: relative;
}
.frnk-close {
    position: absolute;
    top: 10px; right: 20px;
    font-size: 24px;
    cursor: pointer;
}


