body {
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}



.box-adate {
    padding:15px;
    background-color:rgba(255,117,110,0.5);
    animation:blink 1s infinite;
}

.box-adate-left {
    text-align:left;
}

.box-adate-right {
    float:right;
    text-align:right;
}

@keyframes blink {
    0% { background-color: rgba(255,117,110,0.5); }
    50% { background-color: rgba(255,117,110,0.6); } /* Light red */
    100% { background-color: rgba(255,117,110,0.5); }
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.calendar-header button {
    padding: 10px 20px;
    cursor: pointer;
}
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center;
}
.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 20px;
    position: relative;
}
.day {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}
.day:hover {
    background-color: #e0f7fa;
}
.day.disabled {
    background-color: #f9f9f9;
    cursor: not-allowed;
}
.day.selected {
    background-color: #b2ebf2;
}
.appointments {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 1px solid #ccc;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 10;
    width: 90%;
    max-width: 500px;
    box-sizing: border-box;
}
.appointments h3 {
    margin-top: 0;
}

.fully-booked {
    background-color: rgb(255, 135, 135) !important;
    color: white;
    cursor: not-allowed;
}


.bg-custom {
    background-color: #c6d9f0 !important;
}

.navbar-light .navbar-nav .nav-link {
    color: #1c3050 !important;
    font-weight:bold;
    font-family: Roboto Condensed, sans-serif;
    font-size:16px;
}

.navbar-nav .nav-item {
    margin:0 15px;
}

@media (max-width: 600px) {
    .day {
        padding: 8px;
    }
    .calendar-header button {
        padding: 8px 15px;
    }
    .appointments {
        width: 90%;
        padding: 15px;
    }
    .header-text {

        font-size:18px;
        color:#FFF;
        font-family: 'Roboto Condensed', sans-serif;
        
    }

    .left-image {
        width:63px;
    }
    
    .right-image {
        width:35px;
        height:90px;
    }
}


#header {
    background-color:#4a6484;
}

.header-text {

    font-size:24px;
    color:#FFF;
    text-align:center;
    font-family: 'Roboto Condensed', sans-serif;
    
}

.left-image {
    width:73px;
}

.right-image {
    width:45px;
    height:100px;
}

.possible-hours {
    font-size: 18px;
    padding: 15px;
    display: flex;
    justify-content: center;
    font-weight:bold;
}

.content-book {
    padding: 10px;
    display: flex;
    justify-content: center;
}

