body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

h3 {
    margin: 20px 0;
}

label {
    font-weight: bold;
}

.container-inputs{
    width: 162px;
}

select, input {
    padding: 10px;
    margin-top: 5px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#horarios {
    /* align-items: center; */
    padding: 15px;
    width: 300px;
    /* display: flex;
    flex-direction: column; */
    margin-left: 70px;
}

.horario-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.horario-item:last-child {
    border-bottom: none;
}

.hora {
    position: absolute;
    font-weight: bold;
    left: 45px;
    top: 0px;
}

.boleto {
    position: absolute;
    left: 100px;
    padding: 6px;
    border-radius: 5px;
    color: black;
    font-size: 12px;
    top: 0px;
}

.disponible {
    background-color: #4d8f58;
}

.agotado {
    background-color: #A9A9A9;
}

.timeline{
    position: relative;
    top: 0;
}

.scroll{
    width: 300px;
    overflow-x: scroll;
}

.d-flex{
    display: flex;
}

.p-5{
    padding: 5px;
}

.pointer{
    cursor: pointer;
}

.date-activated{
    background-color: yellow;
    border-radius: 15px;
}

.date-navigation {
    display: flex;
    justify-content: space-between;
    width: 350px;
    margin-bottom: 10px;
    position: relative;
    top: -285px;
    left: -90px;
}

button {
    background-color: transparent; /* Hacer el fondo del botón transparente para que no sobrescriba las líneas */
    border: none;
    border-radius: 8px;
    padding: 5px;
    height: 70px;
    position: relative; /* Permitir el posicionamiento absoluto del contenido */
}

.button-left {
    background-color: #25632f; /* Fondo específico para el botón izquierdo */
}

.button-right {
    background-color: #25632f; /* Fondo específico para el botón derecho */
}

.button-bordered::before {
    content: '';
    --b: 3px; 
    --c: rgb(28, 78, 23);
    --w: 20px; 
    border: var(--b) solid #0000;
    --_g: #0000 90deg, var(--c) 0;
    --_p: var(--w) var(--w) border-box no-repeat;
    background:
        conic-gradient(from 90deg  at top    var(--b) left  var(--b), var(--_g)) 0    0    / var(--_p),
        conic-gradient(from 180deg at top    var(--b) right var(--b), var(--_g)) 100% 0    / var(--_p),
        conic-gradient(from 0deg   at bottom var(--b) left  var(--b), var(--_g)) 0    100% / var(--_p),
        conic-gradient(from -90deg at bottom var(--b) right var(--b), var(--_g)) 100% 100% / var(--_p);
    border-radius: 8px;
    padding: 5px;
    height: 92px;
    box-sizing: border-box;
    position: absolute;
    top: -11px;
    left: -13px;
    right: -13px;
    bottom: 0;
    z-index: 0;
}

.button-bordered {
    position: relative;
    z-index: 1;
}



.notification {
    align-items: center;
    font-family: Arial, sans-serif;
    position: relative;
    top: -217px;
    left: -39px;
    display: none;
    width: 200px;
}
.icon {
    width: 30px;
    height: 30px;
    background-color: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
    margin-top: 28px;
}
.icon::before {
    content: "!";
    font-size: 20px;
    color: black;
    font-weight: bold;
}
.message {
    background-color: #FFD700;
    padding: 4px;
    border-radius: 5px;
    color: black;
    font-size: 12px;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.loader img {
    width: 226px;
    height: 56px;
}

.dots {
    display: flex;
    font-size: 24px;
    margin-top: 10px;
}

.dots span {
    animation: blink 1s infinite;
    color: black;
}

.dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blink {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.form-select {
    padding-right: 50px; /* Deja espacio para el ícono */
}

.input-group .input-group-text {
    margin-left: -40px;
    padding: 5px;
    background: transparent !important;
}

.bi {
    font-family: "bootstrap-icons" !important;
}

select {
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    color:black;
    background: white;
    -webkit-appearance:none;
    -ms-appearance:none;
    -o-appearance:none;
    appearance:none;
    padding: 5px 10px !important;
}

.ico{
    font-size: 18px; 
    color: #2E5630 !important; 
    z-index: 1; 
    background: transparent;
}

#placeholder-text {
    position: absolute;
    pointer-events: none; /* Para que no interfiera con los clics */
    margin-top: -33px;
    margin-left: 136px;
    color: #28a745; /* Color similar al borde del input */
    font-size: 1rem;
    display: none; /* Inicialmente oculto */
}

.button-math{
    height: 30px;
    width: 30px;
    border: 1px solid #000;
}

.h-40{
    height: 40px;
}

.h-37{
    height: 37px;
}

.w-155{
    width: 155px;
}