/* ===================================
   Modern Employee Management System
   Professional Design System
   =================================== */

:root {
	/* Color Palette - Modern Professional */
	--primary-color: #4f46e5;
	--primary-dark: #4338ca;
	--primary-light: #818cf8;
	--secondary-color: #10b981;
	--secondary-dark: #059669;
	--warning-color: #f59e0b;
	--danger-color: #ef4444;
	--info-color: #0ea5e9;
	--neutral-color: #6b7280;
	
	/* Grays */
	--gray-50: #f9fafb;
	--gray-100: #f3f4f6;
	--gray-200: #e5e7eb;
	--gray-300: #d1d5db;
	--gray-400: #9ca3af;
	--gray-500: #6b7280;
	--gray-600: #4b5563;
	--gray-700: #374151;
	--gray-800: #1f2937;
	--gray-900: #111827;
	
	/* UI Colors */
	--bg-primary: #ffffff;
	--bg-secondary: var(--gray-50);
	--bg-dark: #1e293b;
	--text-primary: var(--gray-900);
	--text-secondary: var(--gray-600);
	--text-light: var(--gray-500);
	--border-color: var(--gray-200);
	
	/* Shadows */
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	
	/* Spacing */
	--spacing-xs: 0.5rem;
	--spacing-sm: 0.75rem;
	--spacing-md: 1rem;
	--spacing-lg: 1.5rem;
	--spacing-xl: 2rem;
	--spacing-2xl: 3rem;
	
	/* Border Radius */
	--radius-sm: 0.375rem;
	--radius-md: 0.5rem;
	--radius-lg: 0.75rem;
	--radius-xl: 1rem;
	--radius-2xl: 1.5rem;
	--radius-full: 9999px;
	
	/* Transitions */
	--transition-fast: 150ms ease-in-out;
	--transition-base: 250ms ease-in-out;
	--transition-slow: 350ms ease-in-out;
	
	/* Sidebar */
	--sidebar-width: 260px;
	--sidebar-width-collapsed: 70px;
	--header-height: 70px;
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: var(--bg-secondary);
	color: var(--text-primary);
	line-height: 1.6;
	font-size: 16px;
}

/* ===================================
   Header Styles
   =================================== */
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 30px;
	background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
	color: #fff;
	position: fixed;
	top: 0;
	width: 100%;
	height: var(--header-height);
	z-index: 1000;
	box-shadow: var(--shadow-md);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.u-name {
	font-size: 22px;
	font-weight: 700;
	padding-left: 0;
	display: flex;
	align-items: center;
	gap: 12px;
	letter-spacing: -0.5px;
}

.u-name b {
	color: var(--primary-light);
	font-weight: 700;
}

.header i {
	font-size: 24px;
	cursor: pointer;
	color: #fff;
	transition: color var(--transition-base), transform var(--transition-fast);
}

.header i:hover {
	color: var(--primary-light);
	transform: scale(1.1);
}

.header .notification {
	position: relative;
	cursor: pointer;
	padding: 8px;
	border-radius: var(--radius-md);
	transition: background-color var(--transition-base);
}

.header .notification:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.header .notification i {
	font-size: 20px;
}

.header .notification span {
	position: absolute;
	top: 4px;
	right: 4px;
	background: var(--danger-color);
	color: #fff;
	padding: 2px 6px;
	border-radius: var(--radius-full);
	font-size: 11px;
	font-weight: 700;
	min-width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.notification-bar {
	display: none;
	width: 90%;
	max-width: 360px;
	position: absolute;
	right: 20px;
	top: calc(var(--header-height) + 10px);
	background: var(--bg-primary);
	border-radius: var(--radius-lg);
	padding: 12px 0;
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-xl);
	max-height: 500px;
	overflow-y: auto;
	z-index: 999;
}

.notification-bar ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.notification-bar ul li {
	margin: 0;
	padding: 12px 20px;
	border-bottom: 1px solid var(--border-color);
	transition: background-color var(--transition-base);
}

.notification-bar ul li:last-child {
	border-bottom: none;
}

.notification-bar ul li:hover {
	background-color: var(--gray-50);
}

.notification-bar ul li a {
	text-decoration: none;
	color: var(--text-primary);
	font-size: 14px;
	display: block;
}

.notification-bar ul li:nth-child(even) {
	background-color: var(--gray-50);
}

.open-notification {
	display: block;
	animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ===================================
   Sidebar Styles
   =================================== */
.body {
	display: flex;
	min-height: 100vh;
	padding-top: var(--header-height);
}

.side-bar {
	width: var(--sidebar-width);
	background: linear-gradient(180deg, var(--gray-900) 0%, var(--gray-800) 100%);
	min-height: calc(100vh - var(--header-height));
	transition: width var(--transition-base);
	position: fixed;
	top: var(--header-height);
	left: 0;
	height: calc(100vh - var(--header-height));
	overflow-y: auto;
	overflow-x: hidden;
	box-shadow: var(--shadow-lg);
	z-index: 999;
}

.side-bar::-webkit-scrollbar {
	width: 6px;
}

.side-bar::-webkit-scrollbar-track {
	background: transparent;
}

.side-bar::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.2);
	border-radius: var(--radius-full);
}

.side-bar::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.3);
}

.user-p {
	text-align: center;
	padding: 30px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: opacity var(--transition-base);
}

.user-p img {
	width: 80px;
	height: 80px;
	border-radius: var(--radius-full);
	border: 3px solid var(--primary-color);
	object-fit: cover;
	box-shadow: var(--shadow-md);
	margin-bottom: 12px;
	transition: transform var(--transition-base);
}

.user-p img:hover {
	transform: scale(1.05);
}

.user-p h4 {
	color: #fff;
	padding: 8px 0 0 0;
	font-size: 16px;
	font-weight: 600;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.side-bar ul {
	margin-top: 20px;
	list-style: none;
	padding: 0 12px;
}

.side-bar ul li {
	font-size: 15px;
	padding: 0;
	margin-bottom: 4px;
	transition: all var(--transition-base);
	border-radius: var(--radius-md);
	overflow: hidden;
}

.side-bar ul li a {
	display: flex;
	align-items: center;
	padding: 14px 16px;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.8);
	cursor: pointer;
	transition: all var(--transition-base);
	border-radius: var(--radius-md);
	position: relative;
}

.side-bar ul li a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
	height: 0;
	background: var(--primary-color);
	border-radius: 0 3px 3px 0;
	transition: height var(--transition-base);
}

.side-bar ul li:hover a {
	background-color: rgba(255, 255, 255, 0.1);
	color: #fff;
	padding-left: 20px;
}

.side-bar ul li:hover a::before {
	height: 60%;
}

.side-bar ul li a i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	font-size: 20px;
	margin-right: 14px;
	transition: transform var(--transition-base);
}

.side-bar ul li:hover a i {
	transform: scale(1.1);
}

.side-bar ul li a span {
	font-weight: 500;
	white-space: nowrap;
}

.side-bar .active {
	background-color: rgba(79, 70, 229, 0.15);
	border-radius: var(--radius-md);
}

.side-bar .active a {
	color: var(--primary-light) !important;
	padding-left: 20px;
	background-color: rgba(79, 70, 229, 0.15);
}

.side-bar .active a::before {
	height: 60%;
	background: var(--primary-light);
}

.side-bar .active a i {
	color: var(--primary-light) !important;
}

#navbtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: background-color var(--transition-base);
}

#navbtn:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

#checkbox {
	display: none;
}

#checkbox:checked ~ .body .side-bar {
	width: var(--sidebar-width-collapsed);
}

#checkbox:checked ~ .body .side-bar .user-p {
	visibility: hidden;
	opacity: 0;
	height: 0;
	padding: 0;
	border: none;
}

#checkbox:checked ~ .body .side-bar a span {
	display: none;
}

#checkbox:checked ~ .body .side-bar ul li a {
	padding: 14px;
	justify-content: center;
}

#checkbox:checked ~ .body .side-bar ul li a i {
	margin-right: 0;
}

#checkbox:checked ~ .body .section-1 {
	padding-left: calc(var(--sidebar-width-collapsed) + 30px);
}

/* ===================================
   Main Content Section
   =================================== */
.section-1 {
	padding: 40px;
	padding-top: 30px;
	padding-left: calc(var(--sidebar-width) + 40px);
	width: 100%;
	background: var(--bg-secondary);
	min-height: calc(100vh - var(--header-height));
	transition: padding-left var(--transition-base);
}

.section-1 .title,
.section-1 .title-2 {
	margin-bottom: 24px;
	font-size: 28px;
	font-weight: 700;
	color: var(--text-primary);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.section-1 .title a,
.section-1 .title-2 .btn,
.section-1 .title-2 a {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border: none;
	background: var(--primary-color);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	border-radius: var(--radius-md);
	cursor: pointer;
	outline: none;
	transition: all var(--transition-base);
	box-shadow: var(--shadow-md);
	white-space: nowrap;
}

.section-1 .title a:hover,
.section-1 .title-2 .btn:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.section-1 .title a:active,
.section-1 .title-2 .btn:active {
	transform: translateY(0);
}

.section-1 .title-2 a {
	margin-left: 10px;
	background: var(--secondary-color);
}

.section-1 .title-2 a:hover {
	background: var(--secondary-dark);
}

/* ===================================
   Table Styles
   =================================== */
.table-responsive {
	overflow-x: auto;
	background-color: var(--bg-primary);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-md);
	margin-top: 24px;
}

.main-table,
.table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	min-width: 700px;
}

.main-table thead,
.table thead {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.main-table th,
.table th {
	color: #fff;
	padding: 16px 20px;
	text-align: left;
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border: none;
}

.main-table thead tr:first-child th:first-child,
.table thead tr:first-child th:first-child {
	border-top-left-radius: var(--radius-xl);
}

.main-table thead tr:first-child th:last-child,
.table thead tr:first-child th:last-child {
	border-top-right-radius: var(--radius-xl);
}

.main-table td,
.table td {
	padding: 16px 20px;
	border-bottom: 1px solid var(--border-color);
	color: var(--text-primary);
	vertical-align: middle;
	border-left: none;
	border-right: none;
}

.main-table tbody tr,
.table tbody tr {
	transition: background-color var(--transition-base);
}

.main-table tbody tr:hover,
.table tbody tr:hover {
	background-color: var(--gray-50);
}

.main-table tbody tr:last-child td,
.table tbody tr:last-child td {
	border-bottom: none;
}

.main-table tbody tr:last-child td:first-child,
.table tbody tr:last-child td:first-child {
	border-bottom-left-radius: var(--radius-xl);
}

.main-table tbody tr:last-child td:last-child,
.table tbody tr:last-child td:last-child {
	border-bottom-right-radius: var(--radius-xl);
}

/* Wrap tables in responsive container if not already wrapped */
.main-table:not(.table-responsive .main-table),
.table:not(.table-responsive .table):not(.card-body .table) {
	background-color: var(--bg-primary);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-md);
	padding: 0;
}

/* ===================================
   Button Styles
   =================================== */
.delete-btn {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 18px;
	border: none;
	background: var(--danger-color);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	border-radius: var(--radius-md);
	cursor: pointer;
	outline: none;
	transition: all var(--transition-base);
	box-shadow: var(--shadow-sm);
}

.delete-btn:hover {
	background: #dc2626;
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.edit-btn {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 18px;
	border: none;
	background: var(--primary-color);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	border-radius: var(--radius-md);
	cursor: pointer;
	outline: none;
	transition: all var(--transition-base);
	box-shadow: var(--shadow-sm);
}

.edit-btn:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	font-weight: 600;
	font-size: 15px;
	border-radius: var(--radius-md);
	cursor: pointer;
	border: none;
	transition: all var(--transition-base);
	text-decoration: none;
	white-space: nowrap;
}

.btn-primary {
	background-color: var(--primary-color);
	color: #fff;
	border: 1px solid var(--primary-color);
}

.btn-primary:hover {
	background-color: var(--primary-dark);
	border-color: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.btn-secondary {
	background-color: var(--gray-600);
	color: #fff;
	border: 1px solid var(--gray-600);
}

.btn-secondary:hover {
	background-color: var(--gray-700);
	border-color: var(--gray-700);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.btn-success {
	background-color: var(--secondary-color);
	color: #fff;
	border: 1px solid var(--secondary-color);
}

.btn-success:hover {
	background-color: var(--secondary-dark);
	border-color: var(--secondary-dark);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.btn-warning {
	background-color: var(--warning-color);
	color: #fff;
	border: 1px solid var(--warning-color);
}

.btn-warning:hover {
	background-color: #d97706;
	border-color: #d97706;
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.btn-danger {
	background-color: var(--danger-color);
	color: #fff;
	border: 1px solid var(--danger-color);
}

.btn-danger:hover {
	background-color: #dc2626;
	border-color: #dc2626;
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.btn-info {
	background-color: var(--info-color);
	color: #fff;
	border: 1px solid var(--info-color);
}

.btn-info:hover {
	background-color: #0284c7;
	border-color: #0284c7;
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

/* ===================================
   Form Styles
   =================================== */
.form-1 {
	width: 100%;
	max-width: 600px;
	background: var(--bg-primary);
	padding: 32px;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-md);
	margin-bottom: 24px;
}

.input-holder {
	margin-bottom: 20px;
}

.input-holder label,
.input-holder lable {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: var(--text-primary);
	font-size: 14px;
}

.input-1,
input.input-1,
textarea.input-1,
select.input-1 {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid var(--border-color);
	border-radius: var(--radius-md);
	font-size: 15px;
	outline: none;
	display: block;
	transition: all var(--transition-base);
	background-color: var(--bg-primary);
	color: var(--text-primary);
	font-family: inherit;
}

.input-1:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

textarea.input-1 {
	resize: vertical;
	min-height: 120px;
	font-family: inherit;
}

/* ===================================
   Alert/Message Styles
   =================================== */
.danger,
.alert-danger {
	background: #fee2e2;
	color: #991b1b;
	padding: 16px 20px;
	margin-bottom: 20px;
	border-radius: var(--radius-md);
	border-left: 4px solid var(--danger-color);
	font-weight: 500;
	box-shadow: var(--shadow-sm);
	display: flex;
	align-items: center;
	gap: 12px;
}

.success,
.alert-success {
	background: #d1fae5;
	color: #065f46;
	padding: 16px 20px;
	margin-bottom: 20px;
	border-radius: var(--radius-md);
	border-left: 4px solid var(--secondary-color);
	font-weight: 500;
	box-shadow: var(--shadow-sm);
	display: flex;
	align-items: center;
	gap: 12px;
}

.danger i,
.success i,
.alert-danger i,
.alert-success i {
	font-size: 20px;
}

/* ===================================
   Dashboard Cards
   =================================== */
.dashboard {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 24px;
	margin-bottom: 32px;
}

.dashboard-item {
	text-align: center;
	background: var(--bg-primary);
	border-radius: var(--radius-xl);
	padding: 32px 24px;
	box-shadow: var(--shadow-md);
	transition: all var(--transition-base);
	position: relative;
	overflow: hidden;
}

.dashboard-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--primary-color);
	transform: scaleX(0);
	transition: transform var(--transition-base);
}

.dashboard-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.dashboard-item:hover::before {
	transform: scaleX(1);
}

.dashboard-item i {
	display: block;
	color: var(--primary-color);
	font-size: 36px;
	margin-bottom: 16px;
	transition: transform var(--transition-base);
}

.dashboard-item:hover i {
	transform: scale(1.1) rotate(5deg);
}

.dashboard-item span {
	display: block;
	color: var(--text-primary);
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 8px;
}

.dashboard-item .label {
	color: var(--text-secondary);
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* ===================================
   Card Components
   =================================== */
.container {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
	max-width: 1200px;
}

.card {
	background: var(--bg-primary);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-md);
	margin-bottom: 24px;
	overflow: hidden;
	transition: box-shadow var(--transition-base);
}

.card:hover {
	box-shadow: var(--shadow-lg);
}

.card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px;
	border-bottom: 1px solid var(--border-color);
	background: var(--gray-50);
}

.card-header .title {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	color: var(--text-primary);
}

.card-body {
	padding: 24px;
}

/* ===================================
   Status Badges
   =================================== */
.status-badge {
	display: inline-block;
	padding: 6px 14px;
	border-radius: var(--radius-full);
	font-weight: 600;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.status-pending {
	background-color: #fef3c7;
	color: var(--warning-color);
}

.status-in_progress {
	background-color: #e0e7ff;
	color: var(--primary-color);
}

.status-completed {
	background-color: #d1fae5;
	color: var(--secondary-color);
}

.status-approved {
	background-color: #d1fae5;
	color: var(--secondary-color);
}

.status-rejected {
	background-color: #fee2e2;
	color: var(--danger-color);
}

/* ===================================
   Login Page Styles
   =================================== */
.login-body {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
	padding: 20px;
	position: relative;
	overflow: hidden;
}

.login-body::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	opacity: 0.3;
}

.login-body form,
.login-card {
	max-width: 420px;
	width: 100%;
	position: relative;
	z-index: 1;
	background: #ffffff;
	border-radius: var(--radius-xl);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	padding: 40px;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
	.section-1 {
		padding-left: calc(var(--sidebar-width) + 30px);
	}
}

@media (max-width: 768px) {
	:root {
		--sidebar-width: 240px;
	}
	
	.header {
		padding: 0 20px;
	}
	
	.u-name {
		font-size: 18px;
	}
	
	.section-1 {
		padding: 24px 20px;
		padding-left: calc(var(--sidebar-width) + 20px);
	}
	
	.section-1 .title,
	.section-1 .title-2 {
		font-size: 24px;
	}
	
	.dashboard {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.form-1 {
		padding: 24px;
	}
	
	.main-table {
		font-size: 14px;
	}
	
	.main-table th,
	.main-table td {
		padding: 12px 16px;
	}
	
	#checkbox:checked ~ .body .section-1 {
		padding-left: calc(var(--sidebar-width-collapsed) + 20px);
	}
}

@media (max-width: 640px) {
	.side-bar {
		transform: translateX(-100%);
		transition: transform var(--transition-base);
	}
	
	#checkbox:checked ~ .body .side-bar {
		transform: translateX(0);
		width: var(--sidebar-width);
	}
	
	#checkbox:checked ~ .body .side-bar .user-p {
		visibility: visible;
		opacity: 1;
		height: auto;
		padding: 30px 20px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
	
	#checkbox:checked ~ .body .side-bar a span {
		display: inline;
	}
	
	#checkbox:checked ~ .body .side-bar ul li a {
		padding: 14px 16px;
		justify-content: flex-start;
	}
	
	#checkbox:checked ~ .body .side-bar ul li a i {
		margin-right: 14px;
	}
	
	.section-1 {
		padding-left: 20px;
	}
	
	#checkbox:checked ~ .body .section-1 {
		padding-left: 20px;
	}
}

/* ===================================
   Utility Classes
   =================================== */
.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.empty-state {
	text-align: center;
	padding: 60px 20px;
	background-color: var(--bg-primary);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-sm);
	color: var(--text-secondary);
	margin-top: 24px;
}

.empty-state h3 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 12px;
	color: var(--text-primary);
}

.empty-state p {
	font-size: 16px;
	color: var(--text-secondary);
}