.lizzee-app {
	margin: 0;
	padding: 0;
	background: #f5f5f5;
}

.lizzee-app-header {
	width: 100%;
	background: #000000;
	padding: 20px 0;
}

.lizzee-app-header-inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.lizzee-app-logo {
	color: #ffffff;
	font-size: 28px;
	font-weight: 600;
	margin: 0;
}

.lizzee-app-main {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px 20px;
}
.lizzee-section {

	background: #fff !important;
	border: 1px solid #ccd0d4 !important;
	border-radius: 4px;
	margin: 20px 0;
	padding: 20px;

}
.lizzee-section h2 {

	margin: 0 0 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid #e5e5e5 !important;
	font-size: 20px;
	font-weight: 600;

}


/*--------------------------------------------------------------
# Grid
--------------------------------------------------------------*/

.lizzee-grid {

	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 20px;

}


/*--------------------------------------------------------------
# Column Sizes
--------------------------------------------------------------*/

.lizzee-col-1 { grid-column: span 1; }

.lizzee-col-2 { grid-column: span 2; }

.lizzee-col-3 { grid-column: span 3; }

.lizzee-col-4 { grid-column: span 4; }

.lizzee-col-5 { grid-column: span 5; }

.lizzee-col-6 { grid-column: span 6; }

.lizzee-col-7 { grid-column: span 7; }

.lizzee-col-8 { grid-column: span 8; }

.lizzee-col-9 { grid-column: span 9; }

.lizzee-col-10 { grid-column: span 10; }

.lizzee-col-11 { grid-column: span 11; }

.lizzee-col-12 { grid-column: span 12; }
/*--------------------------------------------------------------
# Padding Utilities
--------------------------------------------------------------*/

/* All Sides */

.p-0 { padding: 0 !important; }
.p-1 { padding: 5px !important; }
.p-2 { padding: 10px !important; }
.p-3 { padding: 15px !important; }
.p-4 { padding: 20px !important; }
.p-5 { padding: 30px !important; }


/* Top */

.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 5px !important; }
.pt-2 { padding-top: 10px !important; }
.pt-3 { padding-top: 15px !important; }
.pt-4 { padding-top: 20px !important; }
.pt-5 { padding-top: 30px !important; }


/* Right */

.pr-0 { padding-right: 0 !important; }
.pr-1 { padding-right: 5px !important; }
.pr-2 { padding-right: 10px !important; }
.pr-3 { padding-right: 15px !important; }
.pr-4 { padding-right: 20px !important; }
.pr-5 { padding-right: 30px !important; }


/* Bottom */

.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 5px !important; }
.pb-2 { padding-bottom: 10px !important; }
.pb-3 { padding-bottom: 15px !important; }
.pb-4 { padding-bottom: 20px !important; }
.pb-5 { padding-bottom: 30px !important; }


/* Left */

.pl-0 { padding-left: 0 !important; }
.pl-1 { padding-left: 5px !important; }
.pl-2 { padding-left: 10px !important; }
.pl-3 { padding-left: 15px !important; }
.pl-4 { padding-left: 20px !important; }
.pl-5 { padding-left: 30px !important; }


/*--------------------------------------------------------------
# Margin Utilities
--------------------------------------------------------------*/

/* All Sides */

.m-0 { margin: 0 !important; }
.m-1 { margin: 5px !important; }
.m-2 { margin: 10px !important; }
.m-3 { margin: 15px !important; }
.m-4 { margin: 20px !important; }
.m-5 { margin: 30px !important; }


/* Top */

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 5px !important; }
.mt-2 { margin-top: 10px !important; }
.mt-3 { margin-top: 15px !important; }
.mt-4 { margin-top: 20px !important; }
.mt-5 { margin-top: 30px !important; }


/* Right */

.mr-0 { margin-right: 0 !important; }
.mr-1 { margin-right: 5px !important; }
.mr-2 { margin-right: 10px !important; }
.mr-3 { margin-right: 15px !important; }
.mr-4 { margin-right: 20px !important; }
.mr-5 { margin-right: 30px !important; }


/* Bottom */

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 5px !important; }
.mb-2 { margin-bottom: 10px !important; }
.mb-3 { margin-bottom: 15px !important; }
.mb-4 { margin-bottom: 20px !important; }
.mb-5 { margin-bottom: 30px !important; }


/* Left */

.ml-0 { margin-left: 0 !important; }
.ml-1 { margin-left: 5px !important; }
.ml-2 { margin-left: 10px !important; }
.ml-3 { margin-left: 15px !important; }
.ml-4 { margin-left: 20px !important; }
.ml-5 { margin-left: 30px !important; }

/*--------------------------------------------------------------
# Action Buttons
--------------------------------------------------------------*/

.lizzee-actions {
	display: flex;
	justify-content: center; /* Horizontally centers the buttons */
	align-items: center;     /* Vertically centers the buttons */
	gap: 10px;
}
/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/

.lizzee-page-header {

	margin-bottom: 20px;

}
.lizzee-page-title {
	display: flex;
	align-items: center;
	gap: 15px;
}

.lizzee-page-header h1 {

	margin: 0;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.3;

}
.lizzee-page-header h2 {

	margin: 5px 0 0;
	font-size: 22px;
	font-weight: 600;
	color: #1d2327;

}
/*--------------------------------------------------------------
# Reschedule Class List
--------------------------------------------------------------*/

.lizzee-reschedule-class-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 15px 0;
	border-bottom: 1px solid #ccd0d4;
}

.lizzee-reschedule-class-row span {
	font-size: 18px;
}

.lizzee-reschedule-class-row .button {
	display: inline-block;
	width: auto;
	margin: 0;
	padding: 10px 20px;
	border: 1px solid #2271b1;
	border-radius: 4px;
	background: #ffffff;
	font-size: 16px;
	line-height: 1.4;
	text-decoration: none;
	cursor: pointer;
}

.lizzee-reschedule-class-row .button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.lizzee-reschedule-unavailable {
	opacity: 0.65;
}
/*--------------------------------------------------------------
# Reschedule Select Button
--------------------------------------------------------------*/

.lizzee-reschedule-class-row .button {

	display: block;
	width: 100%;
	padding: 10px 20px;

	background: #2271b1;
	border: 1px solid #2271b1;
	border-radius: 4px;

	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;

	cursor: pointer;

}

.lizzee-reschedule-class-row .button:hover {

	background: #135e96;
	border-color: #135e96;
	color: #ffffff;

}

.lizzee-reschedule-class-row .button:disabled {

	background: #dddddd;
	border-color: #cccccc;
	color: #666666;

	cursor: not-allowed;
	opacity: 1;

}
/*--------------------------------------------------------------
# Confirm Reschedule Actions
--------------------------------------------------------------*/

.lizzee-reschedule-confirm-actions {

	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;

	margin-top: 25px;

}

.lizzee-reschedule-confirm-actions .button {

	display: inline-block;
	width: auto;
	margin: 0;
	padding: 12px 24px;

	border: 1px solid #2271b1;
	border-radius: 4px;

	background: #ffffff;
	color: #2271b1;

	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;

	cursor: pointer;

}

.lizzee-reschedule-confirm-actions .button:hover {

	background: #f0f6fc;
	border-color: #135e96;
	color: #135e96;

}

.lizzee-reschedule-confirm-actions .button-primary {

	background: #2271b1;
	border-color: #2271b1;
	color: #ffffff;

}

.lizzee-reschedule-confirm-actions .button-primary:hover {

	background: #135e96;
	border-color: #135e96;
	color: #ffffff;

}