:root {
	--color-primary: #E23125;
	--color-secondary: #f9E0E2;
	--color-text: #000000;
	--color-accent: #880808;
	--color-varient-1: #CC5500;
	--color-varient-2: #DE3163;
}

.form-group {
	margin-bottom: 20px;
}
.error-message {
	color: red;
	font-size: 12px;
	margin-top: 5px;
}
/* Singular Page */
.heading-title-container {
	margin-top: 30px;
	border-bottom: 2px solid var(--color-varient-1);
}

.heading-label {
    background-color: var(--color-varient-1);
    color: white;
    padding: 10px 15px;
    border-radius: 5px 5px 0px 0px;
    display: inline-flex;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
    position: relative;
    width: auto;
}

.heading-content-container {
	padding-top: 12px;
	padding-left: 12px;
}
.ul-container.heading-content-container ul{
	padding-left: 20px;
}
.heading-content-container p {
	margin-bottom: 12px;
}
.slots ul.date_slider {
	display: flex;
	margin: 12px 0;
	padding: 0;
	gap: 10px;
	overflow-x: scroll;
}

.slots ul.date_slider>li {
	display: flex;
	flex-direction: column;
	padding: 5px;
	border: 1px solid #E6E6FA;
	border-radius: 5px;
	background-color: #E6E6FA;
	min-width: 175px;
	margin-bottom: 12px;
}

.slots ul.date_slider>li p.date {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 0;
	color: #4B0082;
}

.slots ul.date_slider>li p.day {
	font-size: 14px;
	margin-bottom: 20px;
	color: #4B0082;
}

.slots ul.date_slider li ul.time_slider {
	display: flex;
	margin: 0;
	padding: 0;
	flex-direction: column;
	gap: 10px;
	text-wrap: wrap;
}

.slots ul.date_slider li ul.time_slider li {
	list-style: none;
	padding: 5px;
	border: 1px solid #014421;
	background-color: #D0F0C0;
	color: #000;
	border-radius: 5px;
	text-align: center;
}

.slots ul.date_slider li ul.time_slider li:hover {
	border: 1px solid #014421;
	background-color: #014421;
	color: #FFF;
	cursor: pointer;
}

.scroll-container {
    overflow-x: scroll;
    white-space: nowrap;
    padding-bottom: 10px; /* Adds padding for the scrollbar to avoid overlap */
    
    /* Modern browsers appearance */
    scrollbar-width: thin;          /* Firefox */
    scrollbar-color: #ff6600 #f0f0f0; /* Scrollbar color for Firefox */
}

.scroll-container::-webkit-scrollbar {
    height: 8px;
    background-color: #f0f0f0; /* Scrollbar background */
}

.scroll-container::-webkit-scrollbar-thumb {
    background-color: #ff6600; /* Scrollbar thumb (the draggable part) */
    border-radius: 10px;
}

.scroll-container::-webkit-scrollbar-thumb:hover {
    background-color: #cc5200; /* Darker shade on hover */
}

.scroll-container::-moz-scrollbar {
    height: 8px;
}


/* Booking Page*/

.left-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
	border-right: 2px solid var(--color-primary);
}

.left-section .content,
.right-section .content {
	width: 100%;
	max-width: 90%;
}

.doctor-photo {
	border-radius: 50%;
	margin-bottom: 20px;
	border: 1px solid var(--color-primary);
}

.left-section h2 {
	margin-bottom: 20px;
	font-size: 2rem;
	color: var(--color-text);
}

.left-section table {
	border-collapse: separate;
}
.left-section table tbody tr {
	border-bottom: 5px solid #fff; 
}
.left-section table tbody tr td {
	background-color: transparent;
	border: 0;
}
.left-section table tbody tr td:last-child  {
	border-bottom: 2px solid var(--color-varient-1);
}
.left-section table tr td:first-child {
	background-color: var(--color-varient-1);
	border-top-right-radius: 10px;
}
.left-section table tr td:first-child h4,
.left-section table tr td:first-child i {
	color: #fff;
}
.left-section table {
	margin: 0 auto;
	width: 100%;
	text-align: left;
	border-spacing: 0px 15px;
	color: var(--color-text);
	font-size: 1.1rem;
}

.left-section table td {
	padding: 8px;
}

.left-section table h4 {
	margin: 0;
	font-size: 1rem;
	color: var(--color-text);
}

.right-section {
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.right-section h2 {
	margin-bottom: 20px;
	color: var(--color-text);
}

.right-section .form-group label {
	font-weight: bold;
}

.btn-primary {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	border-radius: 0;
	font-size: 'Roboto', sans-serif;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	line-height: 1.3em;
	letter-spacing: 1.53px;
	padding: 15px 20px;
	color: #fff;
}

.btn-primary:hover {
	background-color: var(--color-accent);
	border-color: var(--color-accent);
	color: #fff;
}

@media (max-width: 767.98px) {
	.left-section {
		border-right: none;
	}

	.left-section,
	.right-section {
		padding: 15px;
	}

	.left-section .content,
	.right-section .content {
		width: 100%;
		max-width: 100%;
	}

	.left-section table h4 {
		font-size: 1rem;
	}

	.doctor-photo {
		width: 50%;
		height: auto;
	}
}

/* Common */
#countdown {
    margin: 20px 0;
    color: var(--color-primary);
    letter-spacing: 0.5px;
}
#countdown a {
	color: var(--color-primary);
}
#countdown a:hover {
	color: var(--color-accent);
}