* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    color: #5C8AFF;
    text-align: center;
    padding: 1rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    box-shadow: 2px 2px 3px gray;
}

h1, h2, h3, h4, p {
    margin: 10px 0;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.logo {
    padding: 10px;
}

.logo img {
    height: 40px;
}

h1 {
    margin: 0;
    font-size: 24px;
}

#app {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #e9f4fd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-flow: column;
    align-items: center;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    font-style: italic;
}

.footer {
    margin: 0;
    font-size: 11px;
}

h1, h2 {
    color: #333;
}

.home-container {
    display: flex;
    justify-content: space-between;
}

.home-content {
    flex: 2;
    padding-right: 20px;
}

.colorRed {
    color: red;
}

.appointment-box {
    flex: 1;
    background-color: #e9fded;
    padding: 20px;
    border-radius: 5px;
    justify-content: center;
    display: flex;
    flex-flow: column;
    align-items: center;
}

#app .appointmentLink {
    display: initial;
}

.appointment-types a {
    display: inline-block;
  }

.caps {
    text-transform: uppercase;
}

#captcha {
    display: flex;
    flex-flow: column;
    align-items: center;
}

#captcha input {
    padding: 10px;
    text-align: center;
}

#captcha strong {
    background-color: #deffe5;
    padding: 10px;
    border: 1px solid #abffbc;
}

.blur {
    filter: blur(3px);
    background-color: gray;
    color: gray;
    display: inline-block;
    align-self: baseline;
}

.noAppointment {
    display: flex;
    flex-flow: column;
    align-items: center;
}

.btn {
    display: inline-block;
    background: rgb(99, 120, 243);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 5px;
}

.btn:hover {
    background: rgb(58, 77, 187);
}

#nextBtn {
    align-self: center;
}

#ValidateCaptcha {
    align-self: center;
    display: flex;
}

.appointment-types a {
    display: block;
    margin-bottom: 10px;
}

#captcha {
    margin-bottom: 10px;
}

#calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.calendar-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 30px;
}

.prev-week {
    margin-right: 10px
}

.next-week {
    margin-left: 10px;
}

.day {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

.slot {
    padding: 5px;
    margin: 2px;
    background-color: #f4f4f4;
    cursor: pointer;
}

.slot.available {
    background-color: #90EE90;
}

.slot.unavailable {
    background-color: #FFB6C1;
    cursor: not-allowed;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
}

form input {
    margin-bottom: 10px;
    padding: 5px;
    width: 230px;
}

#confirmBtn {
    margin-top: 10px;
}
