:root {
	--background-color: #ffffff;
	--default-color: #212529;
	--heading-color: #37373f;
	--accent-color: #399532;
	--surface-color: #ffffff;
	--contrast-color: #ffffff;
	--nav-color: #7f7f90;
	--nav-hover-color: #399532;
	--nav-mobile-background-color: #ffffff;
	--nav-dropdown-background-color: #ffffff;
	--nav-dropdown-color: #7f7f90;
	--nav-dropdown-hover-color: #399532;
}

.overlayGlassCard {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9;
}

.glass-card {
	font-family: 'Poppins', sans-serif;
	position: fixed;
	z-index: 10;
	background: linear-gradient(21deg, rgb(230, 245, 255) 22.3%, rgb(173, 216, 230) 56.6%);
	border-radius: 20px;
	box-shadow: 0 8px 20px rgba(57, 149, 50, 0.4);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(255, 255, 255, 0.4);
	width: 400px;
	height: 300px;
	padding: 30px;
	text-align: center;
	transition: transform 0.3s, box-shadow 0.3s;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.glass-card:hover {
	transform: translate(-50%, -55%);
	box-shadow: 0 12px 25px rgba(57, 149, 50, 0.6);
}

.glass-card h1 {
	margin-top: 18px;
	font-size: 56px;
	margin-bottom: 15px;
}

.glass-card button {
	margin-top: 22px;
	padding: 15px 30px;
	border: 1px solid #ddd;
	border-radius: 18px;
	cursor: pointer;
	transition: background-color 0.3s;
	font-size: 12px;
}

.glass-card button:hover {
	background-color: rgba(255, 255, 255, 0.5);
}

.alert {
	padding: 20px;
	background-color: #2196F3;
	color: white;
	opacity: 1;
	transition: opacity 2s ease;
}

.btn-getstarted {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1rem;
	background-color: #007bff;
	color: white;
	text-decoration: none;
	border-radius: 5px;
}

.btn-getstarted:hover {
	background-color: #0056b3;
}

.btn-getstarted i {
	margin-right: 0.5rem;
}

.calendar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.action-button {
	margin-top: 5px;
}

.custom-label {
	text-align: center;
}

.calendar-body .day:nth-child(7n + 1) .day-number {
	margin-left: 0;
	margin-right: 5px;
}

.calendar-body .day:not(:nth-child(7n + 1)) .day-number {
	margin-left: auto;
	margin-right: 5px;
}

.contain {
	margin-top: 1px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

h2 {
	text-align: center;
	margin-bottom: 30px;
}

.table-contain {
	background: #ffffff;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	overflow-x: auto;
}

table {
	width: 100%;
}

.text-danger {
	font-weight: bold;
	color: red;
}

.text-success {
	font-weight: bold;
	color: green;
}

.calendar {
	width: 95%;
	max-width: 1000px;
	margin: 40px auto;
	padding: 20px;
	border: 1px solid #ddd;
	border-radius: 8px;
	background-color: #f9f9f9;
	box-sizing: border-box;
}

.calendar-header button {
	background-color: var(--accent-color);
	color: var(--contrast-color);
	border: none;
	padding: 8px 16px;
	border-radius: 5px;
	font-size: 1.1rem;
	cursor: pointer;
	transition: background-color 0.3s;
}

.calendar-header button:hover {
	background-color: #2f7a28;
}

#calendarMonthYear {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--heading-color);
	margin: 0;
}

.calendar-body {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 10px;
}

.day-label {
	font-weight: bold;
	background-color: #f0f0f0;
	border: 1px solid #ddd;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	border-radius: 4px;
}

.day {
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 1px 5px 5px 5px;
	position: relative;
	box-sizing: border-box;
	min-height: 80px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	font-size: 0.9rem;
	text-align: center;
}

.day-label {
	min-height: 40px;
	padding-top: 8px;
}

.day.past {
	color: #aaa;
	background-color: #eee;
}

.day-number {
	position: absolute;
	top: 5px;
	right: 5px;
	font-weight: bold;
	font-size: 1rem;
}

.custom-label {
	margin-top: 25px;
	font-size: 0.8rem;
	line-height: 1.2;
	color: var(--accent-color);
	font-weight: 600;
}

.durio-image {
	width: 150px;
}

/* .navmenu span { font-size: 1.4rem; } */
@media (max-width:768px) {
	.calendar-body {
		grid-template-columns: repeat(4, 1fr);
	}

	.day,
	.day-label {
		min-height: 70px;
		font-size: 0.8rem;
	}

	.day-number {
		font-size: 0.9rem;
		top: 4px;
		right: 4px;
	}
}

@media (max-width:480px) {
	.calendar-body {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}

	.day,
	.day-label {
		min-height: 60px;
		font-size: 0.7rem;
		padding: 8px 4px 4px 4px;
	}

	.day-number {
		font-size: 0.8rem;
		top: 3px;
		right: 3px;
	}

	.calendar-header {
		flex-direction: column;
		gap: 10px;
	}

	#calendarMonthYear {
		font-size: 1.2rem;
	}

	.calendar-header button {
		width: 100%;
		font-size: 1rem;
		padding: 10px;
	}

	/* .past { display: none;} */
}

h1,
h2,
h3 {
	font-weight: bold;
	text-shadow: 0 0 0.5px black;
	font-family: "Times New Roman", Times, serif;
}

h2,
h3 {
	font-size: 22px;
}

#glassCard>h1,
#glassCard>h2 {
	font-size: 32px;
	color: green;
}

#navmenu a {
	font-weight: bold;
	font-size: 19px;
	display: flex;
	align-items: center;
	text-decoration: none;
	cursor: pointer;
	font-family: "Times New Roman", Times, serif;
}

.glass-card h1 {
	margin: 18px 0 15px;
	font: 800 32px 'Poppins', sans-serif;
	color: #228B22;
	text-shadow: 2px 2px 8px rgba(34, 139, 34, 0.3);
	animation: popIn 0.8s ease-in-out;
	transition: color 0.3s, transform 0.3s;
}

.glass-card h1:hover {
	color: #1e7a1e;
	transform: scale(1.05);
}

.glass-card h3 {
	font: 600 20px 'Poppins', sans-serif;
	color: #333;
	animation: fadeSlideIn 1s ease-in-out;
	transition: letter-spacing 0.3s;
}

@keyframes popIn {
	0% {
		opacity: 0;
		transform: scale(0.5) translateY(-50px);
	}

	100% {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

@keyframes fadeSlideIn {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.heading-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	/* space between image and text */
	flex-wrap: wrap;
	/* optional: wrap on small screens */
}

.durio-image {
	width: 100px;
	/* adjust as needed */
	height: auto;
	border-radius: 8px;
	/* optional for rounded edges */
}

.modern-heading {
	font-weight: bold;
	text-shadow: 0 0 0.5px black;
	font-family: "Roboto",  sans-serif;
	font-size: 22px;
	text-align: left;
	line-height: 1;
	color: #2c3e50;
	letter-spacing: 1px;
	margin: 0;
}

.highlight-mardi {
	font-size: 25px;
	letter-spacing: 1px;
}

#loginModal img {
	margin-right: 5px;
	margin-bottom: 0;
	margin-top: -7px;
}

@media (max-width: 987px) {
	ul li a {
		flex-direction: column;
		align-items: center;
	}

	a.booking img {
		display: none;
	}

	#loginModal img {
		margin-right: 0;
		margin-bottom: 5px;
	}

	/* Hide the dropdown toggle link */
	li.dropdown>a.dropdown-toggle {
		display: none;
	}

	/* Show the dropdown menu directly */
	li.dropdown>ul.dropdown-menu {
		margin-top: 0;
		padding-top: 0;
		margin-bottom: 0;
		padding-bottom: 0;
		border: none;
		display: block;
		position: static;
		/* remove dropdown positioning */
	}
}

select,
option,
.form-control {
	font-size: 14px;
}

/* Full-Screen Overlay */
#overlayModal {
	position: fixed;
	z-index: 999;
	/* Ensure it's below the modal */
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	/* Semi-transparent background */
	display: none;
	/* Hidden by default */
}

/* Modal Container */
.modal {
	position: fixed;
	z-index: 1000;
	/* Ensure it's above the overlay */
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 400px;
	background: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	display: none;
	/* Hidden by default */
	overflow-y: auto;
}

.modal>.card-body {
	width: 280px;
	margin: 0 auto;
}

#register {
	height: 600px;
	max-width: 630px;
}

#register .card-body {
	width: 100%;
	max-width: 520px;
	margin: 0 auto;
}

#login .card-body,
#fpassword .card-body,
#rpassword .card-body {
	width: 100%;
	margin: 0 auto;
}

#login,
#rpassword {
	height: 360px;
}

#fpassword {
	height: 280px;
}

@media (min-width: 768px) {
	#register .row {
		display: flex;
		gap: 20px;
	}

	#register .col-md-6 {
		width: 48%;
	}
}

/* Close Button */
.modal .close-btn {
	float: right;
	font-size: 20px;
	cursor: pointer;
}

/* Button */
.btn-primary {
	padding: 10px 20px;
	background: blue;
	color: white;
	border: none;
	cursor: pointer;
}

.btn {
	display: flex;
	justify-content: center;
	align-items: center;
}

.form-label,
a {
	font-size: 12px;
}

.btn {
	font-size: 15px;
	text-transform: capitalize;
}

/* The alert message box */
.alert-box {
	padding: 10px 15px;
	margin: 10px 0;
	border-left: 5px solid;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.alert-box-info {
	background-color: #bfdcef;
	color: #457389;
	border-color: #31708f;
}

.alert-box-warning {
	background-color: #f5eecb;
	color: #8a6d3b;
	border-color: #b88d42;
}

.alert-box-success {
	background-color: #d1f2c4;
	color: #3c763d;
	border-color: #53a354;
}

.alert-box-error {
	background-color: #f0cccc;
	color: #a94442;
	border-color: #db5552;
}

.alert-box>span {
	font-family: "Times New Roman", Times, serif;
	font-size: 17px;
}

.green-background {
    background-color: #3c763d;
}