body {
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.navbar {
    background-color: #007bff;
}
.navbar-brand, .nav-link {
    color: white !important;
}
.container {
    flex: 1;
    padding-bottom: 10px;
}
.container2 {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer {
    background-color: #007bff;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: auto;
}

.card {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.card-title {
    font-size: 1.5rem;
    font-weight: bold;
}
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-container {
    max-width: 600px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.ticket-container {
    max-width: 500px;
    width: 100%;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.table-responsive {
    overflow-x: auto !important; /* Asegura que la tabla se ajuste al contenedor */
    white-space: nowrap; /* Evita que el contenido se rompa y genere scroll */
}

#ticketsTable {
    width: 100% !important; /* Evita que DataTables fuerce un ancho mayor */
    table-layout: auto; /* Ajusta el tamaño de las columnas automáticamente */
}
@media (max-width: 768px) {
    .table-responsive {
        overflow-x: auto;
    }
    #ticketsTable {
        width: 100%;
        display: block;
    }
    .card {
        margin-bottom: 10px;
    }
}

