body {
    background-color: #f9f9f9;
}

.calendar-box,
.success-box {
    text-align: center;
}

.calendar-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 30px 0 10px;
    flex-wrap: nowrap;
}

.arrow-btn {
    font-size: 14px;
    color: #333;
    border: 1px solid #e3e3e3;
    cursor: pointer;
    border-radius: 5px;
    padding: 3px 10px;
    background-color: #fff;
}

#myform {
    display: none;
}

.day-block {
    width: 70px;
    text-align: center;
}
.date.disabled {
    color: #929292;
    pointer-events: none;
}

.time-select .disabled {
    display: none !important;
}

.date-outer-box {
    border-radius: 15px;
    overflow: hidden;
    margin: 0px 20px;
    transition: transform 0.4s ease;
    width: max-content;
}
.day-name {
    font-weight: 400;
    font-size: 12px;
    padding: 10px;
    background-color: #eff2f5;
    color: #666;
}

.date {
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    background-color: #fff;
}
.date > small {
    font-size: 12px;
}

.selected-date {
    background-color: #2ca01c;
    color: white;
    font-weight: 600;
}

.time-slot {
    font-size: 12px;
    font-weight: 700;
    padding: 5px 30px;
    background-color: #fff;
    box-shadow: 2px 2px #d9d9d9;
    margin-bottom: 20px;
    cursor: pointer;
    display: inline-block;
}
.time-slot:hover {
    background-color: #28a745;
    color: #fff;
    box-shadow: 2px 2px #d9d9d9;
    transform: translateY(-2px);
    cursor: pointer;
}
.time-select {
    max-width: 400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto auto auto;
    column-gap: 20px;
}
.disclaimer {
    font-size: 13px;
    color: #666;
    max-width: 600px;
    margin: auto;
    margin-top: 30px;
}
#confirmation {
    display: none;
}

.confirmation-box {
    max-width: 600px;
    margin: 20px auto;
}

.profile-wrap {
    margin-bottom: 20px;
}

.initials {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background-color: #b9e8c9;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    color: #1c5d36;
}

.meeting-text {
    margin-top: 10px;
}

.meeting-name {
    margin-top: 5px;
    font-weight: bold;
}

.time-box {
    background-color: white;
    color: #000;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    position: relative;
    text-align: left;
}

.meeting-time {
    margin: 0;
}

.reschedule-link {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #2ca01c;
    font-weight: bold;
    text-decoration: underline !important;
    font-size: 14px;
    text-decoration: none;
}

.actions {
    margin-top: 30px;
    background-color: #2ca01c;
    padding: 20px;
    border-radius: 8px;
    color: #fff;
}
.actions button {
    padding: 5px 50px;
}
.email-info {
    margin-bottom: 10px;
}
.demo-box {
    margin-top: 30px;
    text-align: center;
}

.demo-title {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 15px;
}

.demo-link {
    color: #007bff;
    text-decoration: underline;
    font-size: 14px;
}

@media (max-width: 576px) {
    .calendar-box {
        text-align: left;
    }
    .calendar-row {
        flex-direction: column;
        gap: 10px;
        position: relative;
    }

    .arrow-btn1 {
        position: absolute;
        right: 50px;
        top: -56px;
    }
    .arrow-btn2 {
        position: absolute;
        right: 10px;
        top: -56px;
    }

    .date-outer-box {
        margin: 0;
        overflow-x: auto;
        width: 100%;
        justify-content: flex-start;
    }

    .day-block {
        width: 60px;
    }

    .time-select {
        grid-template-columns: auto auto;
        column-gap: 10px;
        row-gap: 10px;
    }

    .time-slot {
        padding: 5px 15px;
        font-size: 12px;
    }

    .confirmation-box {
        padding: 15px;
    }

    .initials {
        width: 50px;
        height: 50px;
        font-size: 20px;
        border-radius: 10px;
    }

    .meeting-name {
        font-size: 18px;
    }

    .actions {
        padding: 15px;
    }

    .actions button {
        padding: 5px 20px;
        margin-bottom: 10px;
        width: 100%;
    }

    .time-box {
        font-size: 14px;
        padding: 10px;
    }

    .reschedule-link {
        position: relative;
        display: block;
        margin-top: 10px;
        text-align: right;
        font-size: 13px;
        top: 0;
    }

    .demo-box {
        padding: 10px 0;
    }

    .demo-title {
        font-size: 15px;
    }

    .demo-box button {
        width: 100%;
    }

    .demo-link {
        font-size: 13px;
        display: inline-block;
    }

    .disclaimer {
        font-size: 12px;
        padding: 0 10px;
    }
}
