/* =========================================================
   GENERAL
========================================================= */
body {
    background: #000;
    font-family: Arial, sans-serif;
    color: white;
    margin: 0;
    padding: 0;
}

/* =========================================================
   HEADER
========================================================= */
.main-header {
    background: #0D0D0D;
    padding: 10px 25px;
    border-bottom: 3px solid #8C5C03;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo {
    height: 55px;
}

.menu-left {
    display: flex;
    gap: 22px;
}

.menu-left a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.menu-left a:hover {
    color: #F2CF1D;
}

/* =========================================================
   CONTENIDO
========================================================= */
.reporte-container {
    max-width: 900px;
    margin: 40px auto;
    background: #0a0a0a;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 0 25px rgba(0,0,0,0.55);
}

.reporte-title {
    text-align: center;
    font-size: 34px;
    color: #F2CF1D;
}

.reporte-sub {
    text-align: center;
    color: #ccc;
    margin-bottom: 20px;
}

/* FILTROS */
.filtros {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
}

select {
    padding: 10px;
    border-radius: 6px;
}

.btn-reporte {
    padding: 10px 20px;
    background: #8C5C03;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.btn-reporte:hover {
    background: #6d4602;
}

.card {
    background: #111;
    padding: 25px;
    margin-top: 25px;
    border-radius: 12px;
}

.card h3 {
    color: #F2CF1D;
    text-align: center;
    margin-bottom: 15px;
}

/* FOOTER */
.main-footer {
    background: #0D0D0D;
    border-top: 3px solid #8C5C03;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

/* Ajustar tamaño del gráfico */
.card canvas {
    max-width: 70%;      /* ---- CAMBIA EL ANCHO ---- */
    height: 260px !important; /* ---- ALTURA CONTROLADA ---- */
    margin: 0 auto;      /* Centrado */
    display: block;
}
