body {
    font-family: Arial, sans-serif;
    font-size: 12px;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
}

html, body {
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    padding: 0;
}
main {
    flex: 1;
}

#contenedorAsientos {
    display: flex;
    flex-direction: column;
}

.asiento {
    width: 15px; /* Tamaño de los asientos */
    height: 15px;
    border-radius: 50%;
    background-color: #ff000080; /* Rojo desvanecido */
    margin: 1px;   
    padding: 1px;
    display: inline-block;
    transition: 0.3s;
    cursor: pointer;
    text-align: center;
    align-items: center;
    justify-content: center;
}

/* Estilo para los asientos bloqueados */
.asiento.bloqueado {
    background-color: #ff0000c0; /* Rojo opaco */
}

.asiento.bloqueado.blkgen {
    background-color: #ff000080; /* Rojo desvanecido */
}

.seleccionado {
    background-color: #ff9100f8 !important; /* Rojo desvanecido */
}

/* Estilo para los asientos no bloqueados */
.asiento.no-bloqueado {
    background-color: #ff0000; /* Azul opaco */
}

.asiento:hover {
    background-color: #ff0000; /* Cambia a rojo intenso */
    transform: scale(1.2); /* Aumenta de tamaño */
}


/* Contenedor con scroll */
.scroll {
    overflow: scroll;
}

.svg-container {
    width: 100%; 
    height: auto; 
    overflow: auto; 
    background: #f9f9f9;
}

.svg-container {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}



#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    display: none;
}

.loadingSpinner {
    width: 50px;
    height: 50px;
    border: 5px solid #fff;
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#contenedorAsientos{
    border: 2px solid #bbb;
    padding: 10px;
    border-radius: 20px;
    overflow: scroll;
}

/* Estiliza la barra de desplazamiento */
::-webkit-scrollbar {
    width: 8px; /* Ancho de la barra de desplazamiento */
}

/* Estiliza el "track" (fondo de la barra) */
::-webkit-scrollbar-track {
    background: #f1f1f1; /* Color de fondo */
    border-radius: 10px;
}

/* Estiliza el "thumb" (barra de desplazamiento) */
::-webkit-scrollbar-thumb {
    background: #888; /* Color de la barra */
    border-radius: 10px;
}

/* Cambia el color cuando el usuario pasa el mouse sobre la barra */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.escenario {
    background-color: yellow;
    color: black;
    font-weight: bold;
    text-align: center;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
}

.card-precios {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    padding: 10px;
    margin: 0;
}

.card-precios p {
    margin: 0;
    font-size: 12px;
}

.card-precios h5 {
    margin: 0;
    font-size: 14px;
}

.text-right {
    text-align: right;
}

.card-precios {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    padding: 10px;
    margin: 0;
}

.form-check-boleto{
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    padding: 10px;
    margin: 0;
}

.precioBE{
    float: inline-end;
    color: #ff0000;
    font-size: 14px;
}

/* Banner de ancho completo */
.banner-container {
    position: relative;
    width: 100%;
    height: 400px; /* Ajusta la altura según lo que prefieras */
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px); /* Desenfoque para el fondo */
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.banner-text h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.banner-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}


/* Estilo para el contenido */


/* Estilo para la tabla de precios */
.table-bordered {
    border: 2px solid #ddd;
}

.table-bordered th, .table-bordered td {
    text-align: center;
    padding: 15px;
}

.table-bordered th {
    background-color: #f8f9fa;
    font-weight: bold;
    color: #333;
}

.table-bordered td {
    background-color: #f9f9f9;
    color: #555;
}

.table-bordered td:hover {
    background-color: #eaeaea;
}



.event-card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.event-img-container {
    height: 200px;
    overflow: hidden;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.event-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-img {
    transform: scale(1.05);
}

.card-title {
    font-weight: bold;
}



.btn-outline-primary {
    border-radius: 25px;
}

.btn-text {
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.banner-text > .btn-naranja {
    font-size: 1.2rem !important;
    padding: 12px 30px !important;
    height: auto;
}

.btn-naranja {
    /*font-size: 1.2rem;
    padding: 12px 30px;*/
    height: 37px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 30px;
    background-color: #ff6600;
    color: white;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}



.btn-naranja:hover {
    background-color: #e65c00;
    color: white;
}


.btn-naranja:disabled {
    background-color: #da5700;
    color: white;
}


.btn-rojo {
    /*font-size: 1.2rem;
    padding: 12px 30px;*/
    height: 37px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 30px;
    background-color: #cc0000;
    color: white;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-rojo:hover {
    background-color: #a30000;
    color: white;
}

.btn-rojo:disabled {
    background-color: #800000;
    color: white;
}


.btn-gris {
    /*font-size: 1.2rem;
    padding: 12px 30px;*/
    height: 37px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 30px;
    background-color: #6c757d;
    color: white;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-gris:hover {
    background-color: #5a6268;
    color: white;
}

.btn-gris:disabled {
    background-color: #495057;
    color: white;
}


.text-derecha {
    text-align: right !important;
}


footer {
    background-color: #343a40;
}

footer a:hover {
    color: #ff6600;
    transition: color 0.3s ease;
}

.social-icon {
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

footer .text-uppercase {
    font-weight: bold;
    letter-spacing: 1px;
}

footer .small {
    color: #ddd;
}

footer .list-unstyled li {
    margin-bottom: 10px;
}



@media (max-width: 767px) {
    .banner-text h1 {
        font-size: 2rem;
    }
    .banner-text p {
        font-size: 1rem;
    }
    .banner-text .btn {
        font-size: 1rem;
        padding: 10px 25px;
    }
    .banner-text {
        width: 90%;
    }

    .banner-text > .btn-naranja {
        font-size: .8rem !important;
        padding: 12px 30px !important;
        height: auto;
    }
    
  
}

