#calendar_trigger {
    cursor: pointer;
    padding: 15px 40px;
    font-size: 1.25rem;
    position: relative;
    display: inline-block;
    transition: all .15s;
    border: 2px solid #cae6e9;
    border-radius: 8px;

}

#calendar_trigger:hover {
    border-color: #00a2ac;
    background-color: #f0f9fa;
}

#calendar_trigger input[type="date"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

#calendar_trigger i {
    margin-right: 10px;
    color: #00a2ac;
}

.timeslots-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 15px;
}

.schedule-time-slot {
    border: 2px solid #cae6e9;
    border-radius: 8px;
    padding: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.schedule-time-slot:hover {
    border-color: #00a2ac;
    background-color: #f0f9fa;
}

.schedule-time-slot input[type="radio"] {
    display: none;
}

.schedule-time-slot label {
    cursor: pointer;
    font-weight: 600;
    color: #636363;
    padding: 10px 20px;
    margin: 0 !important;
}

.schedule-time-slot:has(input:checked) {
    background-color: #00a2ac;
    border-color: #00a2ac;
    color: white;
}

.schedule-time-slot:has(input:checked) label {
    color: white;
}

.schedule-field {
    display: none;
    position: relative;
    margin-bottom: 20px;
}

.icon-label {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    margin: 0 !important;
    color: #00a2ac;
    font-size: 1.2rem;
    z-index: 5;
    pointer-events: none;
}

.schedule-field .form-control {
    padding-left: 60px !important;
    width: 100% !important;
}

.schedule-form .main-btn-style {
    font-family: 'Lato', sans-serif;
    color: #fff;
    background: #50bdc6;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 10px 20px;
}

.schedule-form .main-btn-style:hover,
.schedule-form .main-btn-style:focus,
.schedule-form .main-btn-style:active {
    background: #00a4b0;
}

#name_input,
#contact_input,
#schedule_btn {
    display: none;
}

#message_container {
    padding: 15px;
    border-radius: 8px;
}

.mt-4 {
    margin-top: 1.5rem;
}

.text-center {
    text-align: center;
}

.font-weight-bold {
    font-weight: bold;
}

/* Loading Dots */
.loader-dots {
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 20px;
    display: flex;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #00a2ac;
    border-radius: 50%;
    opacity: 0.2;
    animation: dot-opacity 1.2s infinite ease-in-out;
}

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

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

.dot:nth-child(4) {
    animation-delay: 0.6s;
}

.dot:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes dot-opacity {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}