/* Notification */
.notification {
	position: fixed;
	top: 80px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #2563eb;
	color: #ffffff;
	padding: 12px 24px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	z-index: 50;
}        
/* Restaurant Closed Notification */
.closed-notification {
	background-color: #dc2626;
	color: #ffffff;
	padding: 16px 20px;
	margin: 20px 0;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
	border-left: 4px solid #991b1b;
}        
.closed-notification-text {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 15px;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 0.50px;
}        
.check-timing-btn {
	background: rgba(255, 255, 255, 0.2);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 8px 16px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: 'Raleway', sans-serif;
	text-decoration: none;
	display: inline-block;
	letter-spacing: 0.50px;
}        
.check-timing-btn:hover {
	background: rgba(255, 255, 255, 0.3);
}        
.hidden {
	display: none !important;
}        
/* Popup Styles */
.popup-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
	backdrop-filter: blur(8px);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}        
.popup-backdrop.hidden {
	display: none;
}        
.popup-content {
	background: linear-gradient(145deg, #ffffff, #f8fafc);
	border-radius: 20px;
	padding: 0;
	max-width: 430px;
	width: 100%;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.05);
	text-align: center;
	position: relative;
	overflow: hidden;
}        
.popup-header {
	background: #333;
	padding: 25px 24px 24px;
	position: relative;
	color: white;
}    
.popup-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	backdrop-filter: blur(10px);
}        
.popup-close:hover {
	background: rgba(255, 255, 255, 0.3);
}        
.popup-close svg {
	width: 18px;
	height: 18px;
	color: white;
}        
.popup-title {
	font-size: 28px;
	font-weight: 700;
	color: white;
	margin: 0;
	letter-spacing: 1px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}        
.popup-subtitle {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.9);
	margin-top: 8px;
	font-weight: 400;
	letter-spacing: 1px;
	margin-bottom: 0;
}        
.popup-body {
	padding: 32px 24px;
}        
.popup-description {
	font-size: 15px;
	color: #4b5563;
	line-height: 1.7;
	margin-bottom: 32px;
	text-align: left;
	background: #f8fafc;
	padding: 20px;
	border-radius: 12px;
	border-left: 4px solid #12a726;
}
.popup-description strong {
	color: #1f2937;
	font-weight: 600;
}        
.popup-button {
	background: #12a726;
	color: #ffffff;
	padding: 16px 32px;
	letter-spacing: 1px;
	border: none;
	font-family: 'Raleway', sans-serif;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
	position: relative;
	overflow: hidden;
}        
.popup-button:hover {
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}        
/* Guest Register Form */
.form-group {
	margin-bottom: 24px;
	text-align: left;
	position: relative;
}
.form-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #374151;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	letter-spacing: 1px;
}        
.form-input {
	width: 100%;
	padding: 16px 20px;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	background: #ffffff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}        
.form-input:focus {
	outline: none;
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
}        
.form-input:hover {
	border-color: #d1d5db;
}        
.optional-label {
	color: #9ca3af;
	font-size: 12px;
	font-weight: 400;
	margin-left: 4px;
}        
.form-icon {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	color: #9ca3af;
	pointer-events: none;
}        
/* Icons */
.icon {
	width: 20px;
	height: 20px;
	margin-right: 12px;
}        
.close-icon {
	width: 24px;
	height: 24px;
}     