
.calendario {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: 15px;
padding: 10px;
grid-auto-rows: auto;
}

.calendario .dia {
background-color: #f2f2f2;
padding: 15px;
text-align: center;
border-radius: 5px;
font-size: 14px;
color: #333;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.calendario .dia strong {
display: block;
font-weight: bold;
margin-bottom: 5px;
}

.calendario .dia:hover {
background-color: #c2e0ff;
cursor: pointer;
}


.calendario .dia {
background-color: #e0f7fa;
}

.calendario .dia.cerrado {
background-color: #f8d7da;
color: #721c24;
}

@media screen and (min-width: 768px) {
.calendario {
grid-template-columns: repeat(4, 1fr);
}
}

@media screen and (max-width: 768px) {
.calendario {
grid-template-columns: repeat(3, 1fr);
}
}

.venue-options ul {
display: flex;
justify-content: center;
padding: 0;
margin: 0;
list-style: none;
flex-wrap: wrap;
}

.venue-options li {
margin: 0 10px;
flex: 1 1 auto;
}

.venue-options a {
display: block;
padding: 10px 20px;
background-color: #007bff;
color: white;
text-decoration: none;
font-size: 16px;
border-radius: 5px;
text-align: center;
transition: background-color 0.3s, color 0.3s;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.venue-options a:hover {
background-color: #0056b3;
color: #ffffff;
}

.venue-options a:focus {
outline: none;
}

@media (max-width: 768px) {
.venue-options a {
font-size: 14px; 
padding: 8px 16px; 
}

.venue-options li {
margin: 5px; 
}
}

@media (max-width: 480px) {
.venue-options a {
font-size: 12px;
padding: 6px 12px; 
}

.venue-options li {
margin-right: 5px 0; 
}
}

ul.horario-detalle {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
justify-content: space-between;
background-color: #f9f9f9;
border-radius: 8px;
padding: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

ul.horario-detalle li {
font-family: Arial, sans-serif;
font-size: 16px;
color: #333;
}

ul.horario-detalle li p {
margin: 0;
font-weight: bold;
}

ul.horario-detalle li p span {
font-weight: normal;
color: #555;
}

@media (max-width: 600px) {
ul.horario-detalle {
flex-direction: column;
align-items: flex-start;
}
}

.hora-btn {
background-color: #8EA8C3;
width: 150px;
border: none;
padding: 10px 20px;
margin: 5px;
border-radius: 5px;
color: white;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s;
}

.hora-btn:hover {
background-color: #084D6E; 
}

.arrow-button {
display: inline-flex;
margin-bottom: 25px;
align-items: center;
padding: 10px 15px;
background-color: #888;
color: white; 
text-decoration: none; 
border-radius: 5px; 
font-size: 16px;
font-weight: bold;
transition: background-color 0.3s ease; 
}

.arrow-button:hover {
background-color: #666; 
}

.arrow-icon {
margin-right: 8px; 
font-size: 30px;
}

.time-slot.inactive {
background-color: #ccc;
color: #888;
cursor: not-allowed;
}

.time-slot.inactive span {
pointer-events: none;
}

.time-slot.inactive i {
display: none;
}
.time-slot.checked .time-slot-text {
    color: black; /* Asegúrate de que el texto sea visible sobre el fondo verde */
}
.ui-datepicker {
background-color: #e8f5e9 !important;
border-radius: 10px !important;
border: 1px solid #4caf50 !important;
}
.ui-datepicker-header {
background-color: #4caf50 !important;
color: white;
}
.ui-datepicker-prev, .ui-datepicker-next {
background-color: #4caf50;
color: white;
}
.ui-datepicker-title {
color: white;
}
.ui-state-active, .ui-state-hover {
background-color: #388e3c;
color: white;
}
.ui-state-disabled {
background-color: #b2dfdb !important;
}
.time-date-card {
height: 100%;
}
.time-slot {
padding: 10px;
background-color: #f1f1f1;
border-radius: 5px;
text-align: center;
cursor: pointer;
}
.time-slot.checked {
background-color: #4caf50;
color: white;
}
.time-slot.inactive {
background-color: #e0e0e0;
cursor: not-allowed;
}
