body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
}

#before-generate {
    width: 90%;
    /* Ajusta al 90% del ancho del contenedor principal */
    max-height: 700px;
    /* Limita la altura para evitar que se extienda demasiado */
    overflow: auto;
    /* Agrega barras de desplazamiento si es necesario */
    border: 1px solid #ccc;
    /* Agrega un borde para distinguir el contenedor */
    padding: 10px;
    /* Añade un margen interno */
    background-color: #f9f9f9;
    /* Fondo claro para mayor legibilidad */
}

.sidebar {
    width: 200px;
    background-color: #5f87b7;
    color: #fff;
    position: fixed;
    height: 100%;
    overflow: auto;
    transition: width 0.3s;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
}

.sidebar ul li {
    padding: 15px;
    text-align: center;
    cursor: pointer;
    font-size: 1.5em;
}

.sidebar ul li:hover {
    background-color: #006389;
}

.selected_item {
    background-color: #007BFF;
    color: white;
    font-weight: bold;
}

.main-content {
    margin-left: 200px;
    flex-grow: 1;
    transition: margin-left 0.3s;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    font-size: 1.5em;
}

.navbar-left .icon {
    cursor: pointer;
}

.sub-navbar {
    display: none;
    padding: 10px;
    background-color: #c0defb;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.3em;
}

.content {
    padding: 20px;
}

.hidden {
    width: 0;
    margin-left: 0;
    transition: width 0.3s, margin-left 0.3s;
}

.after-generate {
    margin-top: 20px;
    /* Ajusta el valor del margen según sea necesario */
}

.title {
    text-align: center;
}

.clients-container {
    margin-bottom: 20px;
}

.clients-list {
    list-style-type: none;
    /* Elimina los marcadores de lista */
    padding: 0;
}

.clients-list li {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #ccc;
    /* Agrega una línea divisoria entre cada elemento */
}

.clients-list li.selected {
    background-color: #f0f0f0;
    /* Cambia el color de fondo de la opción seleccionada */
    font-weight: bold;
    /* Hace que la opción seleccionada tenga texto en negrita */
}

.clients-list li:hover {
    background-color: #dbdbdb;
    /* Cambia el color de fondo al pasar el cursor sobre una opción */
}

.kioscos-container {
    margin-top: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.kioscos-container h3 {
    margin-bottom: 10px;
    font-size: 1.5em;
    color: #333;
}

.list-kioscos {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.list-kioscos li {
    padding: 10px;
    margin-bottom: 5px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.list-kioscos li:hover {
    background-color: #f0f0f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.list-kioscos li:active {
    background-color: #e0e0e0;
}

.list-kioscos li.selected {
    background-color: #d0e0f0;
    font-weight: bold;
    border-color: #aaa;
}

#kiosk-card button {
    position: absolute;
    top: 10px;
    right: 10px;
}

.kiosk-card {

    width: 90%;
    height: 80%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    overflow: auto;
    display: flex;
    flex-direction: column;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #f44336;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.menu {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.menu-item {
    flex: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.menu-item:hover {
    background-color: #f0f0f0;
}

.menu-item.selected {
    background-color: #e0e0e0;
    font-weight: bold;
}

.styled-table {
    width: 90%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: 'Arial', sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.styled-table th {
    text-align: center;
}

.styled-table thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
}

.styled-table tbody tr {
    text-align: center;
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #009879;
}

.styled-table tbody tr.active-row {
    font-weight: bold;
    color: #009879;
}


.recaudacion-kiosco {
    text-align: center;
    padding: 20px;
    background-color: #f4f4f4;
    border: 1px solid #dddddd;
    border-radius: 5px;
    width: 90%;
    margin-left: 3%;
}

.recaudacion-kiosco h3 {
    color: #333333;
    font-family: 'Arial', sans-serif;
}

.button-71 {
    position: absolute;
    top: 0px;
    left: 60px;
    background-color: #0078d0;
    border: 0;
    border-radius: 56px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: system-ui, -apple-system, system-ui, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
    font-size: 12px;
    font-weight: 600;
    outline: 0;
    padding: 16px 21px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: all .3s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-71:before {
    background-color: initial;
    background-image: linear-gradient(#fff 0, rgba(255, 255, 255, 0) 100%);
    border-radius: 125px;
    content: "";
    height: 50%;
    left: 4%;
    opacity: .5;
    position: absolute;
    top: 0;
    transition: all .3s;
    width: 92%;
}

.button-71:hover {
    box-shadow: rgba(255, 255, 255, .2) 0 3px 15px inset, rgba(0, 0, 0, .1) 0 3px 5px, rgba(0, 0, 0, .1) 0 10px 13px;
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .button-71 {
        padding: 6px 26px;
    }
}

.button-71-Vips {
    position: absolute;
    top: 0px;
    left: 60px;
    background-color: #00d06b;
    border: 0;
    border-radius: 56px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: system-ui, -apple-system, system-ui, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
    font-size: 12px;
    font-weight: 600;
    outline: 0;
    padding: 16px 21px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: all .3s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-71-Vips:before {
    background-color: initial;
    background-image: linear-gradient(#fff 0, rgba(255, 255, 255, 0) 100%);
    border-radius: 125px;
    content: "";
    height: 50%;
    left: 4%;
    opacity: .5;
    position: absolute;
    top: 0;
    transition: all .3s;
    width: 92%;
}

.button-71-Vips:hover {
    box-shadow: rgba(255, 255, 255, .2) 0 3px 15px inset, rgba(0, 0, 0, .1) 0 3px 5px, rgba(0, 0, 0, .1) 0 10px 13px;
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .button-71-Vips {
        padding: 6px 26px;
    }
}

.fecha-container {
    display: flex;
}

.report-table {
    /* width: 100%; */
    /* Ocupa todo el ancho disponible */

    font-family: Arial, sans-serif;
    /* Cambia la fuente para una más legible */
    font-size: 14px;
    /* Tamaño de fuente moderado */
}

.report-table th,
.report-table td {
    padding: 10px;
    /* Espaciado interno en celdas */
    border: 1px solid #ddd;
    /* Borde claro entre celdas */
    text-align: left;
    /* Alineación a la izquierda */
}

.report-table th {
    background-color: #0078d0;
    /* Fondo azul para encabezados */
    color: white;
    /* Texto blanco */
    position: sticky;
    /* Mantiene el encabezado fijo al hacer scroll */
    top: 0;
    z-index: 1;
    /* Prioridad para mantenerse encima */
}

.report-table tr:nth-child(even) {
    background-color: #f2f2f2;
    /* Alterna colores de filas */
}

.report-table tr:hover {
    background-color: #d9e8ff;
    /* Color al pasar el ratón */
}


/* Estilo para el botón de cargar más */
.load-more-button {
    margin: 15px auto;
    display: block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.load-more-button:hover {
    background-color: #45a049;
}