@media (max-width: 576px) {
    #calendar {
        gap: 4px !important;
    }

    .calendar-day {
        width: 30px !important;
        height: 30px !important;
        font-size: 1rem;
    }

    #monthYear {
        font-size: 1.2rem;
    }
}

.btn-outline-primary:focus,
.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary.active,
.btn-outline-primary.show {
    color: #6f42c1 !important; /* Morado */
    border-color: #6f42c1 !important; /* Morado */
    background-color: rgba(111, 66, 193, 0.1) !important; /* Fondo morado clarito */
    box-shadow: 0 0 0 0.25rem rgba(111, 66, 193, 0.25) !important; /* Sombra morada */
}

.zorrito-img {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 3rem;       /* tamaño más pequeño, ajusta según prefieras */
    height: 3.5rem;      /* para mantener proporción cuadrada */
    transition: transform 0.3s ease;
}

.bg-light {
    background-color: #fdfafd !important;
    background-image: none !important;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #3c3c3c;
}

a {
    text-decoration: none;
}

h1 {
    font-family: "Shadows Into Light", cursive;
    font-weight: 600;
    font-style: normal;
    color: #836fa9;
    font-size: 3rem;
    text-align: center;
}

.calendar-container {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

#monthYear {
    font-family: "Caveat";
    font-weight: 400;
    font-style: normal;
    color: #836fa9;
    font-size: 1.5rem;
}

.calendar-day {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    font-weight: bold;
    transition: background-color 0.2s ease;
    color: #836fa9;
}

.calendar-day.available {
    background-color: #c8b8e3;
    color: white;
}

.calendar-day.today {
    background-color: #a78bc2;
    color: white;
}

.calendar-day.future {
    background-color: #ddd3eb;
    pointer-events: none;
    opacity: 0.6;
}

.calendar-day.future-available {
    background-color: #817295;
    color: white;
    pointer-events: none;
    opacity: 0.8;
}

.btn-outline-primary {
    border-color: #c8b8e3;
    color: #836fa9;
}

.btn-outline-primary:hover {
    background-color: #c8b8e3;
    color: white;
}
