/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/


/* Add your custom styles here */
#header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
/*     margin-bottom: 20px; */
}

#header-row h2{
	font-weight:600;
}
#header-row h5{
	font-weight:300;
}

#week-navigation button {
	background: none;
    border: none;
    font-size: 40px; /* Icon size increased */
    color: #888; /* Icon color */
    margin: 0 10px; /* Space between buttons */
}

#week-navigation button:disabled {
    color: #ccc; /* Disabled state color */
    cursor: not-allowed;
}

#week-navigation button:hover:not(:disabled) {
    color: var(--e-global-color-primary); /* Change color on hover */
}

.calendar-container-main {
    position: relative;
	border: 2px solid #DFEAF2;
    background: #fff;
    border-radius: 15px;
    padding: 50px;
}

.calendar-day {
    display: inline-flex;
    flex: 0 1 auto;
    min-width: 85px;
}

.time-slot {
  margin : 10px;
  box-shadow: none !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--Bondi-Blue, #00A7BF) !important;
  background: #718EBF;
}

 .time-slot:active {
  background: #F0FDFF;
  background-color: #d0f2f7;
  transform: scale(0.95); 
}

 .time-slot:focus {
  outline: 2px solid #00A7BF; 
}


.date-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white; 
    color: #002f36;
    border: 2px solid var(--purchase-button-normal-text-color); 
    border-radius: 15%;
    width: 75px;
    height: 75px;
    justify-content: center;
    margin: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transitions */
}

.date-header.selected {
/*     background-color: var(--e-global-color-primary); */
	background: linear-gradient(90deg, #589BFF 0%, #00A7BF 100%);
    color: white; 
    border: none; 
}

.day {
    font-size: 14px;
    font-weight: bold;
}

.date {
    font-size: 18px;
    font-weight: bold;
}

.slots-container {
    margin-top: 10px;
    padding: 10px;
    background-color: #f4f4f4;
    border-radius: 5px;
    display: none;
}

.slots-container p {
    color: #d9534f;
    font-weight: bold;
}

#dates-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    gap: 30px;
    padding: 20px 0px;
}

#calendar-container #month-container {
    left: -91px;
    top: 45px;
    color: var(--White, #FFF);
    text-align: center;
    font-family: 'Satoshi', 'Inter';
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.4px;
    border-radius: 0px 0px 10px 10px;
    background: var(--Text, #3A4268);
    position: absolute;
    text-transform: uppercase;
    padding: 7px 15px;
    rotate: 270deg;
    height: 35px;
    width: 115px;
}

#week-navigation {
	display: flex;
	gap: 5px;
}
/* Specific styles for prev-week and next-week buttons */
#prev-week, #next-week {
    padding: 5px 8px;
    border: 1px solid #9097ba;
    border-radius: 49px;
	cursor:pointer
}
/* Reverse the direction of the SVG icon inside the button */
#prev-week .prev-week-icon {
    width: 20px; 
    height: auto; 
    display: block;
    transform: rotate(180deg); 
}
/* Style the SVG icon inside the button */
.next-week-btn .next-week-icon {
    width: 20px; 
    height: auto; 
    display: block; 
}

.date-header .date {
    font-size: 20px;
    font-weight: 300;
}

.date-header .day {
    font-size: 18px;
    font-weight: 600;
}

.message-content p {
	text-align:center
}

/* Disable styles for dates with no available slots */
.date-header.disabled {
    color: #dfeaf2; 
    background-color: #fbfcfd;
    border-color: #ddd;
    opacity: 0.5; 
    cursor: not-allowed; 
}

.date-header.disabled .day, .date-header.disabled .date {
    color: #999;
}

.no-slots {
    color: red;
    font-weight: bold;
    text-align: center;
}

/* Thank you page css */
.consent-checklist ul {
    list-style: none;
    padding: 0;
}

.consent-checklist li {
    margin: 10px 0;
}

.appointment-details {
    margin-top: 20px;
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.appointment-details h3 {
    margin-bottom: 10px;
    color: #333;
}

.appointment-details ul {
    list-style: none;
    padding: 0;
}

.appointment-details ul li {
    margin: 5px 0;
}

/* Wrapper */
.thank-you-custom-wrapper {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* Card Styles */
.consent-checklist, .payment-summary {
    flex: 1;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Consent Header */
.consent-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.consent-header .fa-check-circle-o {
    font-size: 75px;
	color:lightgray;
	margin-right: 15px;
}

/* Consent Warning */
.consent-warning {
    color: red;
    margin-bottom: 20px;
}

/* Consent List */
.consent-list {
    list-style: none;
    padding: 0;
}

.consent-list li {
    margin-bottom: 10px;
}

/* Confirm Button */
/* .confirm-appointment {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.confirm-appointment:hover {
    background-color: #005177;
} */

/* Payment Summary */
.payment-summary h2 {
    margin-bottom: 10px;
}

.summary-divider {
    border: none;
    border-top: 1px solid #ddd;
    margin: 10px 0;
}

/* Doctor Info */
.doctor-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.doctor-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.doctor-info .doctor-rating {
    display: block; 
    margin-top: 5px;
    color: gold;
}

/* Payment Details */
.payment-details {
    list-style: none;
    padding: 0;
    line-height: 1.8;
}

.payment-details .amount {
    float: right;
}

.total-amount {
    margin-top: 10px;
    font-size: 1.2em;
}

