.custom-calendar .container-custom-pick-date-and-time {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-family: "JF-Flat-Regular";
    flex-flow: column;
}

.custom-calendar .date-picker {
    color: white;
    font-family: "JF-Flat-Regular";
    margin-bottom: 30px;
}

.custom-calendar .month {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.custom-calendar .time-picker h2,
.custom-calendar .date h2 {
    font-weight: 500;
}

.custom-calendar .month .prev,
.custom-calendar .month .next {
    cursor: pointer;
    color: #979797;

}

.custom-calendar .weekdays {
    display: flex;
    justify-content: space-between;
    padding: 0 5px;
}

.custom-calendar .weekdays div {
    color: #979797;
}

.custom-calendar .days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-left: 1px solid #979797;
    border-top: 1px solid #979797;
    font-family: "JF-Flat-Regular";
}

.custom-calendar .days div {
    padding: 3px;
    color: #979797;
    text-align: center;
    border-right: 1px solid #979797;
    cursor: pointer;
    border-bottom: 1px solid #979797;
    height: 45px;
    width: 45px;
    text-align: end;
    font-size: 15px;
}

.custom-calendar .days div.selected {
    background-color: #ffa726;
    color: #fff;
}

/**/

.custom-calendar .time-picker {
    color: white;
    font-family: "JF-Flat-Regular";
}

.custom-calendar .time-picker h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 10px;
}

/* ... other styles ... */

.custom-calendar .times {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 220px;
    /* Set a max-height to enable scrolling */
    overflow-y: scroll;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.custom-calendar .times::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.custom-calendar .times {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* ... other styles ... */

.custom-calendar .time {
    font-size: 55px;
    color: #fff;
    opacity: 0.09;
    text-align: center;
    line-height: .9;

}

.custom-calendar .time.selected {
    font-size: 60px;
    color: #fff;
    opacity: 1;
}

/* ... existing CSS ... */

.custom-calendar .submit-section {
    margin-top: 20px;
    text-align: center;
}

.custom-calendar #submitDateTime {
    color: white;
    border: none;
    padding: 15px 30px;
    margin: 10px auto;
    border-radius: 5px;
    cursor: pointer;
    font-size: 22px;
    background-color: #e68900;
    display: block;
}

.custom-calendar .form-container .custom-calendar .header h2 {
    font-size: 22px;
    font-weight: 500;
}

.custom-calendar #selectedDateTime {
    font-size: 15px;
    color: #fff;
    text-align: center;
}

.custom-calendar .time-input {
    font-size: 55px;
    color: #fff;
    background: none;
    border: none;
    text-align: center;
    width: 60px;
    overflow-y: scroll;
    padding: 0;
    font-family: "JF-Flat-Regular";
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.custom-calendar .time-input:focus {
    outline: none;
}

.custom-calendar #amPmSelect {
    font-size: 55px;
    color: #fff;
    background: none;
    border: none;
    appearance: none;
    margin: 0;
    height: max-content;
    width: max-content;
    padding: 5px;
    margin-left: 2px;
    font-family: "JF-Flat-Regular";
    background: #0f505f;
    cursor: pointer;
}

.custom-calendar #amPmSelect:focus {
    outline: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.custom-calendar .time-input::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.custom-calendar .time-input {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* For Chrome, Safari, Edge, Opera */
.custom-calendar .time-input::-webkit-outer-spin-button,
.custom-calendar .time-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox */
.custom-calendar .time-input[type="number"] {
    -moz-appearance: textfield;
}

/* General reset for all browsers (optional) */
.custom-calendar .time-input[type="number"]::after,
.custom-calendar .time-input[type="number"]::before {
    content: none;
}

.custom-calendar .timecurrent {
    font-size: 55px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.container-arrow {
    display: flex;
    align-items: center;
    grid-gap: 50px;
}