body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f9f9f9;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}
.loading-container{
	background: #fff;
	margin:0 auto;
	padding:20px;
	width: 90%;
	max-width: 500px;
}

.container {
	background:#fff;
	padding:20px;
	margin:0 auto;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	width: 90%;
	max-width:500px;
}


.progress-container {
	width: 100%;
	background-color: #f3f3f3;
	border: 1px solid #ddd;
	border-radius: 5px;
	height: 25px;
	margin: 20px 0;
	position: relative;
}

.progress-bar {
	height: 100%;
	width: 0;
	background-color: #4caf50;
	border-radius: 5px;
	text-align: center;
	line-height: 25px;
	color: white;
	transition: width 0.4s ease;
}

.progress-label {
	position: absolute;
	width: 100%;
	text-align: center;
	line-height: 25px;
	font-weight: bold;
	color: #333;
}
table {
	width: fit-content;
	margin: 0 auto;
	border-collapse: collapse; /* Ensures borders between cells are merged */
}

th, td {
	border: 1px solid #ccc;
	padding: 8px; /* Adjust padding here if needed */
	text-align: center;
	vertical-align: middle; /* Ensures content is centered vertically */
	font-size:20px;
}
.date{
	font-weight:bold;
}

th {
	background-color: #f4f4f4; /* Consistent background color for all header cells */
}

.time-th {
	font-size: 9px; /* Consider increasing this for better readability */
	line-height: 12px; /* Adjusted for better text spacing */
	padding: 4px 8px; /* Provides consistent padding with other cells */
}

tr:nth-child(even) {
	background-color: #f9f9f9;
}

.header-merge {
	background-color: #f4f4f4;
	font-weight: bold;
	position: sticky;
	top: 0; /* Sticks the header to the top of the viewport */
	z-index: 10; /* Ensures headers appear above the table body */
}

tbody tr:nth-child(even) {
	background-color: #f9f9f9;
}

.clr1{
	color:#777;
}

.time-popup{
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	z-index:12;
	max-width:400px;
	width:80%;
}
ul {
	text-align: left;
	font-size: 18px;
	line-height: 140%;
	padding-left: 10px;
}
p {
	text-align: left;
	font-size: 18px;
}
button.action {
  padding: 10px 20px;
  background-color: #4CAF50; /* Green background */
  color: white; /* White text */
  border: none;
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  font-size: 16px; /* Font size */
  text-align: center;
  margin: 10px auto;
  display:block;
  transition: background-color 0.3s; /* Smooth transition for hover effect */
}

button.action:hover {
  background-color: #45a049; /* Darker shade of green */
}
/*Togle switch*/

.toggleContainer{
	text-align: center;
}
/*  Toggle Switch  */

.toggleSwitch span span {
	display: none;
}  
  
.toggleSwitch {
	display: inline-block;
	height: 18px;
	position: relative;
	overflow: visible;
	padding: 0;
	cursor: pointer;
	width: 200px;
	background-color: #fafafa;
	border: 1px solid #ccc;
	border-radius:5px;
	height:34px;
	user-select: none;
}
.toggleSwitch * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.toggleSwitch label,
.toggleSwitch > span {
	line-height: 20px;
	height: 20px;
	vertical-align: middle;
}
.toggleSwitch input:focus ~ a,
.toggleSwitch input:focus + label {
	outline: none;
}
.toggleSwitch label {
	position: relative;
	z-index: 3;
	display: block;
	width: 100%;
}
.toggleSwitch input {
	position: absolute;
	opacity: 0;
	z-index: 5;
}
.toggleSwitch > span {
	position: absolute;
	left: 0;
	width: calc(100% - 6px);
	margin: 0;
	text-align: left;
	white-space: nowrap;
  margin:0 3px;
}
.toggleSwitch > span span {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	display: block;
	width: 50%;
	margin-left: 50px;
	text-align: left;
	font-size: 0.9em;
	width: auto;
	left: 0;
	top: -1px;
	opacity: 1;
	width:40%;
	text-align: center;
  line-height:34px;
}
.toggleSwitch a {
	position: absolute;
	right: 50%;
	z-index: 4;
	display: block;
	top: 3px;
	bottom: 3px;
	padding: 0;
	left: 3px;
	width: 50%;
	background-color: #666;
	border-radius: 4px;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.toggleSwitch > span span:first-of-type {
	color: #FFF;
	opacity: 1;
	left: 0;
	margin: 0;
	width: 50%;
}
.toggleSwitch > span span:last-of-type {
	left:auto;
	right:0;
	color: #999;
	margin: 0;
	width: 50%;
}
.toggleSwitch > span:before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: -2px;
	/* background-color: #fafafa;
	border: 1px solid #ccc; */
	border-radius: 30px;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
.toggleSwitch input:checked ~ a {
	left: calc(50% - 3px);
}
.toggleSwitch input:checked ~ span:before {
	/* border-color: #0097D1;
	box-shadow: inset 0 0 0 30px #0097D1; */
}
.toggleSwitch input:checked ~ span span:first-of-type {
	left:0;
	color:#999;
}
.toggleSwitch input:checked ~ span span:last-of-type {
	/* opacity: 1;
	color: #fff;	 */
	color:#FFF;
}
/* Switch Sizes */
.toggleSwitch.large {
	width: 60px;
	height: 27px;
}
.toggleSwitch.large a {
	width: 27px;
}
.toggleSwitch.large > span {
	height: 29px;
	line-height: 28px;
}
.toggleSwitch.large input:checked ~ a {
	left: 41px;
}
.toggleSwitch.large > span span {
	font-size: 1.1em;
}
.toggleSwitch.large > span span:first-of-type {
	left: 50%;
}
.toggleSwitch.xlarge {
	width: 80px;
	height: 36px;
}
.toggleSwitch.xlarge a {
	width: 36px;
}
.toggleSwitch.xlarge > span {
	height: 38px;
	line-height: 37px;
}
.toggleSwitch.xlarge input:checked ~ a {
	left: 52px;
}
.toggleSwitch.xlarge > span span {
	font-size: 1.4em;
}
.toggleSwitch.xlarge > span span:first-of-type {
	left: 50%;
}

/*  End Toggle Switch  */

/*switcher toggle*/
		
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Style for the label */
.fixed-toggle-container {
  display: flex;
  align-items: center;
  margin: 20px auto;
  width: fit-content;
  gap: 10px; /* Space between label text and the switch */
}

.input-group-popup {
	position: relative;
	margin: 0 10px;
	text-align: center;
}

.input-group-popup input {
	text-align: center;
	width: 50px;
	padding: 5px 10px;
	border: 1px solid #ccc;
	font-size: 16px;
}

.input-group-time {
	display:flex;
	justify-content:center;
}
.input-group {
	position: relative;
	margin: 0 10px;
	text-align: center;
}


input {
	text-align: center;
	width: 50px;
	padding: 5px 10px;
	border: 1px solid #ccc;
	font-size: 32px;
}
.popup {
	display: none;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border: 1px solid #ccc;
	background: white;
	padding: 20px;
	width:70%;
	max-width:500px;
	z-index: 1000;
}

.popup-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.time-button {
	padding: 10px;
	margin: 5px;
	width: 50px;
	cursor: pointer;
	font-size: 18px;
}



label {
	display: block;
	font-weight: normal;
	font-size: small;
	line-height: 200%;
}

/* Optional: Hover effects for the arrow buttons */


@media (max-width: 768px) {
	.row {
		flex-direction: column;
	}
}