/* ===== CALENDAR PAGE STYLES ===== */

.calendar-page {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
	min-height: 100vh;
	color: #f8fafc;
	overflow-x: hidden;
	padding-top: 20px; /* reduced now that navbar is not fixed here */
}

/* Fix oversize logo/nav on calendar page */
.calendar-page .navbar { padding: 12px 0; }
.calendar-page .nav-container { align-items: center; }
.calendar-page .logo { width: 56px; height: 56px; object-fit: contain; display: block; }

/* Make navbar non-fixed on calendar page so it never overlays content */
.calendar-page .navbar {
	position: relative !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	z-index: 5 !important;
	background: rgba(255, 255, 255, 0.95);
}

.calendar-page .nav-container,
.calendar-page .nav-logo,
.calendar-page .nav-menu { position: relative; z-index: 5; }

/* Lift calendar content above navbar background layers just in case */
.calendar-page .calendar-content,
.calendar-page .calendar-header,
.calendar-page .calendar-toolbar,
.calendar-page .calendar-grid { z-index: 20; position: relative; }

/* Calendar Content */
.calendar-content {
	padding: 2rem;
	margin-top: 20px; /* reduced; navbar no longer fixed */
	position: relative;
	z-index: 20;
}

/* Calendar Header */
.calendar-header {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 2rem;
	margin-bottom: 2rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	position: relative;
	overflow: hidden;
}

.calendar-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
	border-radius: 24px;
	z-index: -1;
}

.calendar-title h1 {
	font-size: 3rem;
	font-weight: 800;
	background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin: 0 0 0.5rem 0;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.calendar-title p {
	font-size: 1.1rem;
	color: #cbd5e1;
	margin: 0;
	font-weight: 400;
}

.calendar-controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 2rem;
	flex-wrap: wrap;
	gap: 1rem;
}

/* View Selector */
.view-selector {
	display: flex;
	gap: 0.5rem;
	background: rgba(0, 0, 0, 0.2);
	padding: 0.5rem;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.view-btn {
	background: transparent;
	border: none;
	color: #cbd5e1;
	padding: 0.75rem 1.5rem;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.view-btn:hover {
	color: #f8fafc;
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

.view-btn.active {
	background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
	color: white;
	box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Calendar Navigation */
.calendar-navigation {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.nav-btn {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #f8fafc;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-btn:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.today-btn {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	border: none;
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 12px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.today-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.current-date {
	font-size: 1.25rem;
	font-weight: 600;
	color: #f8fafc;
	background: rgba(255, 255, 255, 0.1);
	padding: 0.75rem 1.5rem;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Calendar Toolbar */
.calendar-toolbar {
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 1.5rem;
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
}

.toolbar-left, .toolbar-center, .toolbar-right {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.search-container {
	position: relative;
	min-width: 300px;
}

.search-container input {
	width: 100%;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	padding: 0.75rem 1rem 0.75rem 3rem;
	color: #f8fafc;
	font-size: 1rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-container input:focus {
	outline: none;
	border-color: #3b82f6;
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-container input::placeholder {
	color: #94a3b8;
}

.search-icon {
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: #94a3b8;
	font-size: 1rem;
}

.filter-dropdown select {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	padding: 0.75rem 1rem;
	color: #f8fafc;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-dropdown select:focus {
	outline: none;
	border-color: #3b82f6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Calendar Grid */
.calendar-grid {
	background: rgba(255, 255, 255, 0.02);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 2rem;
	min-height: 600px;
	position: relative;
	overflow: hidden;
}

.calendar-grid::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
				radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.05) 0%, transparent 50%);
	border-radius: 24px;
	z-index: -1;
}

/* Month View */
.month-view {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 1px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	overflow: hidden;
}

.weekday-header {
	background: rgba(59, 130, 246, 0.1);
	padding: 1rem;
	text-align: center;
	font-weight: 600;
	color: #f8fafc;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.calendar-day {
	background: rgba(255, 255, 255, 0.02);
	min-height: 120px;
	padding: 0.5rem;
	border: 1px solid rgba(255, 255, 255, 0.05);
	position: relative;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
}

.calendar-day:hover {
	background: rgba(255, 255, 255, 0.05);
	transform: scale(1.02);
	z-index: 2;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.calendar-day.today {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
	border-color: #3b82f6;
}

.calendar-day.other-month {
	opacity: 0.3;
}

.calendar-day.weekend {
	background: rgba(248, 250, 252, 0.02);
}

.day-number {
	font-size: 1.1rem;
	font-weight: 600;
	color: #f8fafc;
	margin-bottom: 0.5rem;
	display: block;
}

.day-events {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.event-item {
	background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
	color: white;
	padding: 0.25rem 0.5rem;
	border-radius: 6px;
	font-size: 0.75rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
}

.event-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.event-item:hover::before {
	left: 100%;
}

.event-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Event Sidebar */
.event-sidebar {
	position: fixed;
	top: 0;
	right: -400px;
	width: 400px;
	height: 100vh;
	background: rgba(15, 23, 42, 0.95);
	backdrop-filter: blur(20px);
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1000;
	overflow-y: auto;
}

.event-sidebar.open {
	right: 0;
}

.sidebar-header {
	padding: 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.sidebar-header h3 {
	margin: 0;
	color: #f8fafc;
	font-size: 1.5rem;
	font-weight: 600;
}

.close-sidebar {
	background: none;
	border: none;
	color: #94a3b8;
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 8px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.close-sidebar:hover {
	color: #f8fafc;
	background: rgba(255, 255, 255, 0.1);
}

.sidebar-content {
	padding: 2rem;
}

/* Event Modal */
.event-modal-content {
	max-width: 800px;
	max-height: 90vh;
	overflow-y: auto;
}

.modal-header h2 {
	color: #f8fafc;
	margin: 0;
	font-size: 2rem;
	font-weight: 700;
	background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Form Styling */
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: #f8fafc;
	font-weight: 500;
	font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	padding: 0.75rem 1rem;
	color: #f8fafc;
	font-size: 1rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #3b82f6;
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: #94a3b8;
}

/* Color Picker */
.color-picker {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.5rem;
	margin-top: 0.5rem;
}

.color-option {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.color-option:hover {
	transform: scale(1.1);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.color-option.selected {
	border-color: #f8fafc;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

.color-option.selected::after {
	content: '✓';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-weight: bold;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Form Actions */
.form-actions {
	display: flex;
	gap: 1rem;
	justify-content: flex-end;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Settings Modal */
.settings-modal-content {
	max-width: 600px;
}

.settings-content {
	margin-bottom: 2rem;
}

.setting-section {
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.setting-section:last-child {
	border-bottom: none;
}

.setting-section h3 {
	color: #f8fafc;
	margin: 0 0 1rem 0;
	font-size: 1.25rem;
	font-weight: 600;
}

.setting-item {
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.setting-item label {
	color: #f8fafc;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.setting-item input[type="checkbox"] {
	width: auto;
	margin: 0;
}

.setting-item input[type="color"] {
	width: 60px;
	height: 40px;
	padding: 0;
	border: none;
	border-radius: 8px;
	cursor: pointer;
}

.setting-item select {
	width: auto;
	min-width: 150px;
}

/* Modal Actions */
.modal-actions {
	display: flex;
	gap: 1rem;
	justify-content: flex-end;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
	.calendar-content {
		padding: 1rem;
	}
	
	.calendar-header {
		padding: 1.5rem;
	}
	
	.calendar-title h1 {
		font-size: 2.5rem;
	}
	
	.calendar-controls {
		flex-direction: column;
		align-items: stretch;
	}
	
	.view-selector {
		justify-content: center;
	}
	
	.calendar-navigation {
		justify-content: center;
	}
	
	.event-sidebar {
		width: 100%;
		right: -100%;
	}
}

@media (max-width: 768px) {
	.calendar-content {
		padding: 0.5rem;
		margin-top: 60px;
	}
	
	.calendar-header {
		padding: 1rem;
		border-radius: 16px;
	}
	
	.calendar-title h1 {
		font-size: 2rem;
	}
	
	.calendar-title p {
		font-size: 1rem;
	}
	
	.view-selector {
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.view-btn {
		padding: 0.5rem 1rem;
		font-size: 0.9rem;
	}
	
	.calendar-toolbar {
		flex-direction: column;
		align-items: stretch;
	}
	
	.toolbar-left, .toolbar-center, .toolbar-right {
		justify-content: center;
	}
	
	.search-container {
		min-width: auto;
		width: 100%;
	}
	
	.form-row {
		grid-template-columns: 1fr;
	}
	
	.month-view {
		gap: 0.5px;
	}
	
	.calendar-day {
		min-height: 80px;
		padding: 0.25rem;
	}
	
	.day-number {
		font-size: 0.9rem;
	}
	
	.event-item {
		font-size: 0.7rem;
		padding: 0.2rem 0.4rem;
	}
}

/* Animations */
@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.calendar-header,
.calendar-toolbar,
.calendar-grid {
	animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-sidebar {
	animation: slideInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-content {
	animation: scaleIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Loading States */
.calendar-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 400px;
	color: #94a3b8;
	font-size: 1.1rem;
}

.loading-spinner {
	width: 40px;
	height: 40px;
	border: 3px solid rgba(59, 130, 246, 0.3);
	border-top: 3px solid #3b82f6;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-right: 1rem;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Empty State */
.calendar-empty {
	text-align: center;
	padding: 4rem 2rem;
	color: #94a3b8;
}

.calendar-empty i {
	font-size: 4rem;
	margin-bottom: 1rem;
	opacity: 0.5;
}

.calendar-empty h3 {
	margin: 0 0 1rem 0;
	color: #f8fafc;
	font-size: 1.5rem;
}

.calendar-empty p {
	margin: 0 0 2rem 0;
	font-size: 1.1rem;
}

/* Week and Day Views */
.week-view, .day-view {
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.time-slot {
	background: rgba(255, 255, 255, 0.02);
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.05);
	min-height: 60px;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.time-label {
	font-weight: 600;
	color: #94a3b8;
	min-width: 80px;
	font-size: 0.9rem;
}

.time-events {
	flex: 1;
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

/* Agenda View */
.agenda-view {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.agenda-date {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.agenda-date-header {
	font-weight: 600;
	color: #f8fafc;
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.agenda-events {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.agenda-event {
	background: rgba(59, 130, 246, 0.1);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 8px;
	padding: 0.75rem;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.agenda-event:hover {
	background: rgba(59, 130, 246, 0.2);
	transform: translateX(5px);
}

.agenda-event-time {
	font-size: 0.8rem;
	color: #94a3b8;
	margin-bottom: 0.25rem;
}

.agenda-event-title {
	font-weight: 600;
	color: #f8fafc;
	margin-bottom: 0.25rem;
}

.agenda-event-location {
	font-size: 0.8rem;
	color: #cbd5e1;
}

/* Authentication Styles */
.auth-required-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.auth-overlay-content {
	text-align: center;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 3rem;
	max-width: 500px;
	width: 90%;
}

.auth-overlay-content h2 {
	color: #f8fafc;
	margin: 0 0 1rem 0;
	font-size: 2rem;
	font-weight: 700;
	background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.auth-overlay-content p {
	color: #cbd5e1;
	margin: 0 0 2rem 0;
	font-size: 1.1rem;
	line-height: 1.6;
}

.auth-modal-content {
	max-width: 450px;
	max-height: 90vh;
	overflow-y: auto;
}

.auth-form {
	margin-top: 1.5rem;
}

.auth-form .form-group {
	margin-bottom: 1.5rem;
}

.auth-form label {
	display: block;
	margin-bottom: 0.5rem;
	color: #f8fafc;
	font-weight: 500;
	font-size: 0.9rem;
}

.auth-form input {
	width: 100%;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	padding: 0.75rem 1rem;
	color: #f8fafc;
	font-size: 1rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-form input:focus {
	outline: none;
	border-color: #3b82f6;
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.auth-form input::placeholder {
	color: #94a3b8;
}

.auth-form .form-actions {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
	flex-wrap: wrap;
}

.auth-form .form-actions .btn {
	flex: 1;
	min-width: 120px;
}

.auth-links {
	margin-top: 1.5rem;
	text-align: center;
}

.auth-links a {
	color: #60a5fa;
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.auth-links a:hover {
	color: #93c5fd;
	text-decoration: underline;
}

/* Modal Styles */
.modal {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
}

.modal-content {
	background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
	margin: 5vh auto;
	padding: 2rem;
	border-radius: 20px;
	width: 90%;
	max-width: 450px;
	max-height: 85vh;
	position: relative;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
	animation: slideInUp 0.4s ease-out;
	overflow-y: auto;
}

.modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
	margin: 0;
	color: #f8fafc;
	font-size: 1.5rem;
	font-weight: 600;
}

.close {
	color: #94a3b8;
	font-size: 2rem;
	font-weight: bold;
	cursor: pointer;
	transition: color 0.3s ease;
	line-height: 1;
}

.close:hover {
	color: #f8fafc;
}

/* Button Styles */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	white-space: nowrap;
}

.btn-primary {
	background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
	color: white;
	box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-outline {
	background: transparent;
	color: #f8fafc;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}
