/* Estilos generales */
body {
    background-color: #f8f9fa;
    font-family: "Poppins", sans-serif;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Menú de Navegación */
.navbar {
    background-color: #2c7b50;
    padding: 15px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.navbar-left {
    display: flex;
    gap: 40px;
    align-items: center;
    padding-left: 20px;
}

.navbar a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    color: white;
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.dropdown-content a {
    color: #2c7b50 !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: 0.3s;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    text-decoration: none !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Contenedor principal */
.container {
    max-width: 1900px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 5%;
}

.izquierda {
    text-align: left;
}

/* Encabezados */
h2 {
    color: #2c7b50;
    font-weight: bold;
}

/* Reloj y fecha */
.reloj,
.fecha {
    font-size: 20px;
    font-weight: bold;
    color: #2c7b50;
    margin-top: 10px;
    background: #e9f5ee;
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Contador flip */
.flip-counter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.flip-card {
    background-color: #2c7b50;
    color: white;
    width: 60px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Tabla */
.table-container {
    margin-top: 20px;
}

table {
    width: 100% !important;
}

th {
    background-color: #2c7b50 !important;
    color: white !important;
}

/* Contador filial */
.filial-counter {
    font-size: 16px;
    font-weight: bold;
    color: #2c7b50;
    margin-top: 5px;
}

/* Botón de exportar */
.export-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    padding: 5px;
    cursor: pointer;
    transition: transform 0.2s;
}

.export-btn:hover {
    transform: scale(1.1);
}