body {
	background-color: #f1f5f9;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: #1e293b;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* Header Styling */
.header-section {
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
	border-top: 5px solid #10b981;
	color: #ffffff;
	padding: 35px 0;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
}
.header-logo {
	max-height: 85px;
	width: auto;
	filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.15));
}
.header-title {
	font-weight: 700;
	letter-spacing: -0.025em;
	font-size: 1.65rem;
}
.header-subtitle {
	font-weight: 400;
	color: #94a3b8;
	font-size: 0.95rem;
	letter-spacing: 0.05em;
}

/* Stats Cards Styling */
.card-stat {
	border: none;
	border-radius: 12px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
	transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	overflow: hidden;
}
.card-stat:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.stat-icon-wrapper {
	width: 50px;
	height: 50px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}
.stat-number {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
}
.stat-label {
	font-size: 0.85rem;
	font-weight: 500;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Table Card Styling */
.card-table {
	border: none;
	border-radius: 16px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
	background-color: #ffffff;
	padding: 24px;
	margin-bottom: 40px;
}
.table thead th {
	border-bottom: 2px solid #e2e8f0;
	color: #475569;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.8rem;
	letter-spacing: 0.05em;
	background-color: #f8fafc;
	padding: 15px 12px;
}
.table tbody td {
	vertical-align: middle;
	padding: 16px 12px;
	border-bottom: 1px solid #f1f5f9;
	color: #334155;
}
.table-hover tbody tr:hover {
	background-color: #f8fafc;
}
.satker-name {
	font-weight: 600;
	color: #1e293b;
}

/* Date & Time Styling */
.datetime-badge {
	display: inline-flex;
	flex-direction: column;
	background-color: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 6px 12px;
	min-width: 170px;
}
.datetime-date {
	font-size: 0.85rem;
	font-weight: 600;
	color: #334155;
}
.datetime-time {
	font-size: 0.75rem;
	color: #64748b;
	margin-top: 2px;
}

/* Badges */
.badge-pill {
	padding: 6px 12px;
	font-weight: 500;
	font-size: 0.8rem;
	border-radius: 30px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

/* DataTables Overrides */
.dt-search, .dataTables_wrapper .dataTables_filter {
	margin-bottom: 20px;
}
.dt-search input, .dataTables_wrapper .dataTables_filter input {
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	padding: 6px 12px;
	margin-left: 10px;
	outline: none;
	transition: border-color 0.15s ease-in-out;
}
.dt-search input:focus, .dataTables_wrapper .dataTables_filter input:focus {
	border-color: #10b981;
}

/* Footer */
footer {
	margin-top: auto;
	background-color: #ffffff;
	border-top: 1px solid #e2e8f0;
	padding: 20px 0;
}
