body {
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	margin: 0;
	padding: 0;
	/* background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); */
	/* background: linear-gradient(135deg, #1e253a 0%, #273754 100%); */
	/* background-color: #1e253a; */
	background-color: #25334d;
	min-height: 100vh;
	color: #e2e8f0;
	line-height: 1.6;
}

body > .container{
	transform: scale(0.95);
	transform-origin: top center;
}

.header {
	padding: 12px 24px;
	border-bottom: 1px solid rgba(59, 130, 246, 0.1);
	background: linear-gradient(135deg, #0b1220 0%, #1e293b 100%);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
	position: sticky;
	top: 0;
	z-index: 100;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-left {
	font-size: 20px;
	font-weight: 700;
	background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.5px;
}


/* Admin Menu Dropdown */
.admin-menu-container {
	position: relative;
	z-index: 10;
}

.admin-menu-toggle {
	background: transparent;
	border: none;
	color: #e2e8f0;
	font-size: 24px;
	cursor: pointer;
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	transition: all 0.2s ease;
	position: relative;
	z-index: 11;
	pointer-events: auto;
}

.admin-menu-toggle:hover {
	background: rgba(59, 130, 246, 0.1);
	color: #60a5fa;
}

.admin-menu-toggle.active {
	background: rgba(59, 130, 246, 0.15);
	color: #60a5fa;
}

.admin-menu-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 8px;
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	min-width: 180px;
	display: none;
	z-index: 1001;
	overflow: hidden;
	pointer-events: auto;
}

.admin-menu-dropdown.active {
	display: block;
}

.admin-menu-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	color: #e2e8f0;
	text-decoration: none;
	transition: all 0.2s ease;
	border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.admin-menu-item:last-child {
	border-bottom: none;
}

.admin-menu-item:hover {
	background: rgba(59, 130, 246, 0.1);
	color: #60a5fa;
}

.admin-menu-item.active {
	background: rgba(59, 130, 246, 0.15);
	color: #60a5fa;
}

.admin-menu-item i {
	width: 18px;
	text-align: center;
	font-size: 16px;
}

.admin-menu-item span {
	flex: 1;
}

/* User Menu Dropdown */
.user-menu-container {
	position: relative;
	z-index: 10;
}

.user-menu-toggle {
	background: transparent;
	border: none;
	color: #e2e8f0;
	font-size: 24px;
	cursor: pointer;
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	transition: all 0.2s ease;
	position: relative;
	z-index: 11;
	pointer-events: auto;
}

.user-menu-toggle:hover {
	background: rgba(59, 130, 246, 0.1);
	color: #60a5fa;
}

.user-menu-toggle.active {
	background: rgba(59, 130, 246, 0.15);
	color: #60a5fa;
}

.user-menu-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 8px;
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	min-width: 180px;
	display: none;
	z-index: 1001;
	overflow: hidden;
	pointer-events: auto;
}

.user-menu-dropdown.active {
	display: block;
}

.user-menu-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	color: #e2e8f0;
	text-decoration: none;
	transition: all 0.2s ease;
	border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.user-menu-item:last-child {
	border-bottom: none;
}

.user-menu-item:hover {
	background: rgba(59, 130, 246, 0.1);
	color: #60a5fa;
}

.user-menu-item.active {
	background: rgba(59, 130, 246, 0.15);
	color: #60a5fa;
}

.user-menu-item i {
	width: 18px;
	text-align: center;
	font-size: 16px;
}

.user-menu-item span {
	flex: 1;
}

/* Navigation Menu Dropdown (Hamburger) */
.nav-menu-container {
	position: relative;
	z-index: 10;
	display: none;
}

.nav-menu-toggle {
	background: transparent;
	border: none;
	color: #e2e8f0;
	font-size: 24px;
	cursor: pointer;
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	transition: all 0.2s ease;
	position: relative;
	z-index: 11;
	pointer-events: auto;
}

.nav-menu-toggle:hover {
	background: rgba(59, 130, 246, 0.1);
	color: #60a5fa;
}

.nav-menu-toggle.active {
	background: rgba(59, 130, 246, 0.15);
	color: #60a5fa;
}

.nav-menu-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 8px;
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	min-width: 180px;
	display: none;
	z-index: 1001;
	overflow: hidden;
	pointer-events: auto;
}

.nav-menu-dropdown.active {
	display: block;
}

.nav-menu-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	color: #e2e8f0;
	text-decoration: none;
	transition: all 0.2s ease;
	border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.nav-menu-item:last-child {
	border-bottom: none;
}

.nav-menu-item:hover {
	background: rgba(59, 130, 246, 0.1);
	color: #60a5fa;
}

.nav-menu-item.active {
	background: rgba(59, 130, 246, 0.15);
	color: #60a5fa;
}

.nav-menu-item i {
	width: 18px;
	text-align: center;
	font-size: 16px;
}

.nav-menu-item span {
	flex: 1;
}

/* Responsive header - hide nav buttons and show hamburger below 1300px */
@media (max-width: 1199px) {
	.header-nav {
		display: none !important;
	}

	.nav-menu-container {
		display: block;
	}
}

/* Mobile responsive styles (non-header) */
@media (max-width: 768px) {
	/* Agents page mobile styles */
	#agentsToolbar {
		flex-direction: column;
		align-items: stretch !important;
		gap: 12px;
	}

	#agentsToolbar > * {
		width: 100%;
	}

	#agentsToolbar .button {
		width: 100%;
		justify-content: center;
	}

	#agentsPaginationControls {
		flex-direction: column !important;
		gap: 12px;
		padding: 12px !important;
	}

	#agentsPaginationControls > div:first-child {
		text-align: center;
	}

	#agentsPaginationControls > div:last-child {
		justify-content: center;
		flex-wrap: wrap;
	}

	#agentsPageInfo {
		padding: 0 8px !important;
		font-size: 14px;
	}

	/* Make table scrollable on mobile */
	table {
		display: table;
		width: 100%;
	}

	table th,
	table td {
		font-size: 12px;
		padding: 8px 6px;
	}

	h1 {
		font-size: 26px;
		margin: 0 0 20px 0;
	}

	/* Modal adjustments for mobile */
	.modal {
		width: 95% !important;
		max-width: none !important;
		margin: 20px;
		max-height: 90vh;
		overflow-y: auto;
	}

	.modal-title {
		font-size: 18px;
	}

	.modal-actions {
		flex-direction: column;
		gap: 8px;
	}

	.modal-actions .button {
		width: 100%;
	}
}


/* Header navigation buttons - outline style */
.navButton,
.header .button {
	background: transparent;
	border: 2px solid rgba(59, 130, 246, 0.2);
	color: #e2e8f0;
	padding: 6px 16px;
	transition: all 0.2s ease;
	cursor: pointer;
}
.navButton:hover,
.header .button:hover {
	background: rgba(59, 130, 246, 0.1);
	border-color: rgba(59, 130, 246, 0.3);
	color: #60a5fa;
}

.navButton.active,
.header .button.active {
	background: rgba(59, 130, 246, 0.15);
	border-color: rgba(59, 130, 246, 0.3);
	color: #60a5fa;
	font-weight: 500;
}

.navButton{
	border-radius:8px;
}

.container {
	max-width: 1400px;
	margin: 20px auto;
}


@media (max-width: 768px) {
	.container {
		margin: 20px auto;
	}
	.header {
		padding: 6px 12px;
	}
}

/* System page grid layout */
.system-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	margin-bottom: 40px;
}

.system-left-column {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.system-right-column {
	display: flex;
	flex-direction: column;
}

@media (max-width: 1024px) {
	.system-grid {
		grid-template-columns: 1fr;
	}
}

.system-table-section {
	display: flex;
	flex-direction: column;
}

.system-table-section h1 {
	margin: 0 0 16px 0;
	font-size: 24px;
	padding-bottom: 12px;
}

.system-table-section h1::after {
	width: 40px;
}

h1 {
	margin: 0 0 32px 0;
	font-size: 32px;
	font-weight: 800;
	background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -1px;
	position: relative;
	padding-bottom: 16px;
}

h1::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
	border-radius: 2px;
}

.panel{
	margin-top: 12px;
	padding: 12px;
	background: rgba(17, 24, 39, 0.6);
	border: 1px solid rgba(59, 130, 246, 0.1);
	border-radius: 12px;
	/* margin-bottom: 32px; */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
	display: flex;
	gap: 12px;
	align-items: center;
	flex-wrap: wrap;
}

.table{
	margin-top: 12px;
	padding: 12px;
	background: rgba(17, 24, 39, 0.6);
	border: 1px solid rgba(59, 130, 246, 0.1);
	border-radius: 12px;
	/* margin-bottom: 32px; */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
}

/* Page toolbars */
#agentsToolbar {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

#agentsCount {
	color: #94a3b8;
	font-size: 14px;
}

.button {
	padding: 6px 12px;
	border-radius: 8px;
	background: linear-gradient(135deg, #334155 0%, #475569 100%);
	color: #e2e8f0;
	text-decoration: none;
	border: 1px solid rgba(71, 85, 105, 0.3);
	font-size: 14px;
	/* font-weight: 600; */
	transition: background 0.15s ease, border-color 0.15s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	cursor: pointer;
}

.button:hover {
	background: linear-gradient(135deg, #475569 0%, #64748b 100%);
	border-color: rgba(96, 165, 250, 0.4);
}

.button:active {
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* Red button for close trade action */

.button.primary {
	background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
	border-color: rgba(59, 130, 246, 0.3);
}

.button.primary:hover {
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}


table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 16px;
	background: rgba(17, 24, 39, 0.6);
	border: 1px solid rgba(59, 130, 246, 0.1);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
}

/* Make agent table rows show pointer cursor on hover */
#agentsTable tbody tr {
	cursor: pointer;
}

th,
td {
	padding: 4px 10px;
	border-bottom: 1px solid rgba(31, 41, 55, 0.5);
	text-align: left;
	font-size: 14px;
}

th {
	color: #cbd5e1;
	font-weight: 700;
	background: rgba(11, 18, 32, 0.8);
	text-transform: uppercase;
	font-size: 10px;
	letter-spacing: 0.8px;
	border-bottom: 2px solid rgba(59, 130, 246, 0.2);
	padding: 10px 12px;
}

tbody tr {
	transition: all 0.2s ease;
	background: transparent;
}

tbody tr:nth-child(even) {
	background: rgba(15, 23, 42, 0.3);
}

tbody tr:hover {
	background: rgba(59, 130, 246, 0.1);
}

tbody tr:last-child td {
	border-bottom: none;
}

.badge {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.3px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.badge.ok {
	background: linear-gradient(135deg, #047857 0%, #065f46 100%);
	color: #a7f3d0;
	border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge.err {
	background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
	color: #fecaca;
	border: 1px solid rgba(239, 68, 68, 0.2);
}

.badge.warn {
	background-color: #f59e0b;
	color: #ffffff;
	border: 1px solid rgba(245, 158, 11, 0.2);
}

.badge.info {
	background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
	color: #dbeafe;
	border: 1px solid rgba(59, 130, 246, 0.2);
}

.badge.orange {
	background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
	color: #fed7aa;
	border: 1px solid rgba(251, 146, 60, 0.2);
}

.badge.sleep {
	background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
	color: #e9d5ff;
	border: 1px solid rgba(139, 92, 246, 0.2);
}


.agent-create-btn {
	font-size: 12px;
	padding: 4px 12px;
	background-color: #3b82f6;
	color: #ffffff;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background-color 0.2s;
}

.agent-create-btn:hover {
	background-color: #2563eb;
}

form.inline {
	display: inline;
}

input,
select {
	padding: 12px 16px;
	border-radius: 10px;
	border: 1px solid rgba(59, 130, 246, 0.2);
	background: rgba(11, 18, 32, 0.6);
	color: #e2e8f0;
	font-size: 14px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-sizing: border-box;
	font-weight: 500;
}

input:focus,
select:focus {
	outline: none;
	border-color: #3b82f6;
	box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15), 0 4px 12px rgba(59, 130, 246, 0.2);
	background: rgba(15, 23, 42, 0.8);
	transform: translateY(-1px);
}

input:hover,
select:hover {
	border-color: rgba(96, 165, 250, 0.4);
	background: rgba(17, 24, 39, 0.8);
}

label {
	display: block;
	/* margin: 16px 0 8px; */
	color: #cbd5e1;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.3px;
}

.form-section {
	margin-bottom: 32px;
	padding: 24px;
	background: rgba(11, 18, 32, 0.4);
	border-radius: 12px;
	border: 1px solid rgba(59, 130, 246, 0.1);
}

.form-section h2 {
	margin: 0 0 20px 0;
	font-size: 18px;
	color: #e2e8f0;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.form-row {
	margin-bottom: 8px;
}

.form-row-group {
	display: flex;
	gap: 12px;
	margin-bottom: 8px;
}
.form-row-group label {
	margin-bottom: 6px;
}
.form-row-group input {
	margin-left: -3px;
}
.form-row-half {
	flex: 1;
	min-width: 0;
}

.form-row input[type="text"],
.form-row input[type="number"] {
	width: 100%;
	max-width: 400px;
}

.form-row input[type="checkbox"] {
	width: auto;
	margin-right: 8px;
	cursor: pointer;
}

/* Day of Week Checkboxes */
.day-checkbox-label {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	user-select: none;
}

.day-checkbox-label input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	margin: 0;
}

.day-checkbox-text {
	display: inline-block;
	padding: 6px 12px;
	min-width: 45px;
	text-align: center;
	font-size: 12px;
	font-weight: 500;
	border-radius: 16px;
	background: rgba(30, 41, 59, 0.4);
	border: 1px solid rgba(59, 130, 246, 0.15);
	color: #64748b;
	transition: all 0.2s ease;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.day-checkbox-text::before {
	content: '';
	margin-right: 0;
	transition: all 0.2s ease;
}

.day-checkbox-label input[type="checkbox"]:checked + .day-checkbox-text::before {
	content: '✓ ';
	margin-right: 3px;
}

.day-checkbox-label:hover .day-checkbox-text {
	border-color: rgba(59, 130, 246, 0.25);
	background: rgba(30, 41, 59, 0.6);
	color: #94a3b8;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.day-checkbox-label input[type="checkbox"]:checked + .day-checkbox-text {
	background: rgba(59, 130, 246, 0.25);
	border-color: rgba(59, 130, 246, 0.3);
	color: #cbd5e1;
	box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.day-checkbox-label input[type="checkbox"]:checked + .day-checkbox-text:hover {
	background: rgba(59, 130, 246, 0.35);
	border-color: rgba(59, 130, 246, 0.4);
	box-shadow: 0 2px 6px rgba(59, 130, 246, 0.25);
}

.day-checkbox-label input[type="checkbox"]:focus + .day-checkbox-text {
	outline: 2px solid rgba(59, 130, 246, 0.5);
	outline-offset: 2px;
}

/* Create Buttons - styled like day checkboxes but green */
/* Target all buttons with IDs containing "create" or "Create", but exclude cancel/close buttons */
.green-pill {
	padding: 6px 16px;
	min-width: auto;
	text-align: center;
	font-size: 12px;
	border-radius: 16px;
	transition: all 0.2s ease;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	background: rgba(16, 185, 129, 0.25);
	border: 1px solid rgba(16, 185, 129, 0.3);
	color: #a7f3d0;
}
.green-pill.small{
	padding-top: 2px;
	padding-bottom: 4px;
	padding-left: 10px;
	padding-right: 10px;
	display:flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
}

.green-pill:hover {
	background: rgba(16, 185, 129, 0.35);
	border-color: rgba(16, 185, 129, 0.4);
	color: #d1fae5;
	box-shadow: 0 2px 6px rgba(16, 185, 129, 0.25);
	transform: translateY(-1px);
}

.green-pill:active {
	transform: translateY(0);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.green-pill:focus {
	outline: 2px solid rgba(16, 185, 129, 0.5);
	outline-offset: 2px;
}

.green-pill:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}

.blue-pill {
	padding: 6px 16px;
	min-width: auto;
	text-align: center;
	font-size: 12px;
	border-radius: 16px;
	transition: all 0.2s ease;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	background: rgba(59, 130, 246, 0.25);
	border: 1px solid rgba(59, 130, 246, 0.3);
	color: #dbeafe;

}
.blue-pill.small{
	padding-top: 1px;
	padding-bottom: 2px;
	padding-left: 10px;
	padding-right: 10px;
	/* display:flex; */
	align-items: center;
	justify-content: center;
	width: fit-content;
}

.blue-pill:hover {
	background: rgba(59, 130, 246, 0.35);
	border-color: rgba(59, 130, 246, 0.4);
	color: #d1fae5;
	box-shadow: 0 2px 6px rgba(59, 130, 246, 0.25);
	transform: translateY(-1px);
}

.blue-pill:active {
	transform: translateY(0);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.blue-pill:focus {
	outline: 2px solid rgba(59, 130, 246, 0.5);
	outline-offset: 2px;
}

.blue-pill:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}

/* Neutral Pill Buttons - for modify, modify selected, delete selected, etc. */
.neutral-pill{
	padding: 6px 16px;
	min-width: auto;
	text-align: center;
	font-size: 12px;
	font-weight: 500;
	border-radius: 9999px;
	background: rgba(148, 163, 184, 0.1);
	border: 1px solid rgba(148, 163, 184, 0.2);
	color: #cbd5e1;
	transition: all 0.2s ease;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.neutral-pill.small{
	padding-top: 2px;
	padding-bottom: 4px;
	padding-left: 10px;
	padding-right: 10px;
	display:flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
}
.neutral-pill:hover {
	background: rgba(148, 163, 184, 0.15);
	border-color: rgba(148, 163, 184, 0.3);
	color: #cbd5e1;
	box-shadow: 0 2px 4px rgba(40, 40, 40, 0.15);
	cursor: pointer;
	transform: translateY(-1px);
}

.neutral-pill:active {
	transform: translateY(0);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.neutral-pill:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}

/* Red pill button for destructive actions */
.red-pill {
	padding: 6px 16px;
	min-width: auto;
	text-align: center;
	font-size: 12px;
	font-weight: 500;
	border-radius: 9999px;
	background: rgba(239, 68, 68, 0.15);
	border: 1px solid rgba(239, 68, 68, 0.3);
	color: #fca5a5;
	transition: all 0.2s ease;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.red-pill.small{
	padding-top: 2px;
	padding-bottom: 4px;
	padding-left: 10px;
	padding-right: 10px;
	display:flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
}

.red-pill:hover {
	background: rgba(239, 68, 68, 0.25);
	border-color: rgba(239, 68, 68, 0.5);
	color: #fff !important;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	/* transform: translateY(-1px); */
}

.red-pill:active {
	/* transform: translateY(0); */
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.red-pill:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}

.yellow-pill{
	padding: 6px 16px;
	min-width: auto;
	text-align: center;
	font-size: 12px;
	font-weight: 500;
	border-radius: 9999px;
	background: rgba(250, 204, 21, 0.15);
	border: 1px solid rgba(250, 204, 21, 0.3);
	color: #facc15;
	transition: all 0.2s ease;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.yellow-pill.small{
	padding-top: 2px;
	padding-bottom: 4px;
	padding-left: 10px;
	padding-right: 10px;
	display:flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
}

.yellow-pill:hover {
	background: rgba(250, 204, 21, 0.25);
	border-color: rgba(250, 204, 21, 0.5);
	color: #fff !important;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	/* transform: translateY(-1px); */
}

.yellow-pill:active {
	/* transform: translateY(0); */
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.yellow-pill:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}


#agentProfileHeader {
	margin-bottom: 24px;
}

#agentProfileHeader h1 {
	margin: 0 0 16px 0;
	font-size: 24px;
	padding-bottom: 12px;
}

#agentProfileToolbar {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-bottom: 24px;
}

.system-table-section h2 {
	margin: 0 0 16px 0;
	font-size: 20px;
}

/* Toggle Switch */
.toggle-label {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	cursor: pointer;
	gap: 12px;
}

.toggle-label>div {
	display: flex;
	flex-direction: column;
	flex: 0 1 auto;
	min-width: 0;
}

.toggle-switch {
	position: relative;
	display: inline-block;
	width: 48px;
	height: 24px;
}

.toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.toggle-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #475569;
	transition: 0.3s;
	border-radius: 24px;
}

.toggle-slider:before {
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	transition: 0.3s;
	border-radius: 50%;
}

.toggle-switch input:checked+.toggle-slider {
	background-color: #10b981;
}

.toggle-switch input:checked+.toggle-slider:before {
	transform: translateX(24px);
}

.toggle-switch input:disabled+.toggle-slider {
	opacity: 0.5;
	cursor: not-allowed;
}

input[readonly] {
	background-color: rgba(11, 18, 32, 0.3);
	color: #94a3b8;
	cursor: not-allowed;
	/* border-color: rgba(59, 130, 246, 0.1); */
}

input:disabled,
select:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	background-color: rgba(11, 18, 32, 0.3);
}

.readonly-field input {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><text x="0" y="14" font-size="14" fill="%2394a3b8" opacity="0.5">🔒</text></svg>');
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 36px;
}

.readonly-field select {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><text x="0" y="14" font-size="14" fill="%2394a3b8" opacity="0.5">🔒</text></svg>');
	background-repeat: no-repeat;
	background-position: right 32px center;
	padding-right: 36px;
}

.field-hint {
	font-size: 11px;
	color: #94a3b8;
	font-weight: normal;
	margin-left: 6px;
}

.field-disabled-hint {
	display: block;
	font-size: 12px;
	color: #f59e0b;
	margin-top: 6px;
	font-style: italic;
}

.toggle-label span:first-child {
	font-weight: 600;
	margin-bottom: 4px;
}

.toggle-description {
	font-size: 12px;
	color: #94a3b8;
	font-weight: normal;
	line-height: 1.4;
}

.toggle-row {
	margin-bottom: 12px;
}

.toggle-save-indicator {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	background: rgba(16, 185, 129, 0.1);
	border: 1px solid rgba(16, 185, 129, 0.3);
	border-radius: 6px;
	color: #10b981;
	font-size: 13px;
	margin-top: 12px;
	animation: fadeIn 0.3s ease;
}

.save-icon {
	font-size: 16px;
	font-weight: bold;
}

.stats-section {
	min-height: 200px;
}

.stats-section .security-stats {
	grid-template-columns: repeat(5, 1fr);
}

.stats-placeholder {
	color: #64748b;
	padding: 20px;
	text-align: center;
	font-style: italic;
	font-size: 14px;
}

/* Generic loading overlay and spinner */
.loading {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10001;
	flex-direction: column;
	animation: fadeIn 0.2s ease;
}

.loading .loading-text {
	margin-top: 16px;
	color: #e2e8f0;
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 0.5px;
}

.spinner {
	width: 48px;
	height: 48px;
	border: 4px solid rgba(59, 130, 246, 0.2);
	border-top-color: #3b82f6;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* Simple modal */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10002;
	animation: fadeIn 0.2s ease;
	overflow-y: auto;
	padding: 20px;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.modal {
	background: linear-gradient(135deg, rgba(17, 24, 39, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 16px;
	padding: 32px;
	width: 360px;
	max-width: calc(100% - 32px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(59, 130, 246, 0.1);
	animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(20px);
}

.modal-title {
	font-weight: 800;
	font-size: 24px;
	margin-bottom: 20px;
	background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.5px;
}

.modal-body {
	color: #cbd5e1;
	margin-bottom: 24px;
	line-height: 1.7;
}

.modal-actions {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	margin-top: 24px;
}
[id$="PageInfo"] {
	color: #94a3b8;
	font-size: 14px;
	padding-left: 16px;
	padding-right: 16px;
}
[id$="PaginationControls"] {
	display: flex;
	align-items: center;
	justify-content: space-between;
	/* padding: 14px; */
	background: rgba(17, 24, 39, 0.6);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 12px;
}

hr {
	border: none;
	border-top: 2px solid rgba(59, 130, 246, 0.2);
	margin: 48px 0;
	position: relative;
}

hr::after {
	content: '';
	position: absolute;
	top: -1px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 2px;
	background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

/* Form improvements in modals */
.modal input[type="text"],
.modal input[type="email"],
.modal input[type="password"],
.modal select {
	width: 100%;
	margin-bottom: 0;
}

.modal label {
	margin-top: 16px;
	margin-bottom: 8px;
}

.modal label:first-of-type {
	margin-top: 0;
}

/* Action buttons in tables */
table .button {
	padding: 6px 10px;
	font-size: 11px;
	margin-right: 6px;
}

table .button:last-child {
	margin-right: 0;
}

/* Fixed column widths for agents table - all columns fixed except Symbol */
#agentsTable {
	table-layout: fixed;
	width: 100%;
}

#agentsTable th:nth-child(1),
#agentsTable td:nth-child(1) {
	width: 40px;
}

/* Symbol column - takes remaining space */
#agentsTable th:nth-child(2),
#agentsTable td:nth-child(2) {
	width: auto;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

#agentsTable th:nth-child(3),
#agentsTable td:nth-child(3) {
	width: 75px;
}

#agentsTable th:nth-child(4),
#agentsTable td:nth-child(4) {
	width: 95px;
}

#agentsTable th:nth-child(5),
#agentsTable td:nth-child(5) {
	width: 75px;
}

#agentsTable th:nth-child(6),
#agentsTable td:nth-child(6) {
	width: 95px;
}

#agentsTable th:nth-child(7),
#agentsTable td:nth-child(7) {
	width: 95px;
}

#agentsTable th:nth-child(8),
#agentsTable td:nth-child(8) {
	width: 95px;
}

#agentsTable th:nth-child(9),
#agentsTable td:nth-child(9) {
	width: 75px;
}

#agentsTable th:nth-child(10),
#agentsTable td:nth-child(10) {
	width: 75px;
}

#agentsTable th:nth-child(11),
#agentsTable td:nth-child(11) {
	width: 75px;
}

#agentsTable th:nth-child(12),
#agentsTable td:nth-child(12) {
	width: 75px;
}

/* Responsive column hiding for agents table */
/* Hide Total Cost column at smaller screens */
@media (max-width: 1300px) {
	#agentsTable th:nth-child(8),  /* Total Cost */
	#agentsTable td:nth-child(8) {
		display: none;
	}
}

/* Hide Trade Amount column */
@media (max-width: 1200px) {
	#agentsTable th:nth-child(7),  /* Trade Amount */
	#agentsTable td:nth-child(7) {
		display: none;
	}
}

/* Hide Symbol Type column */
@media (max-width: 1100px) {
	#agentsTable th:nth-child(5),  /* Symbol Type */
	#agentsTable td:nth-child(5) {
		display: none;
	}
}

/* Hide Strategy column */
@media (max-width: 1000px) {
	#agentsTable th:nth-child(4),  /* Strategy */
	#agentsTable td:nth-child(4) {
		display: none;
	}
}

/* Hide TimeFrame column */
@media (max-width: 900px) {
	#agentsTable th:nth-child(3),  /* TimeFrame */
	#agentsTable td:nth-child(3) {
		display: none;
	}
}

/* Hide Avg column */
@media (max-width: 800px) {
	#agentsTable th:nth-child(10),  /* Avg */
	#agentsTable td:nth-child(10) {
		display: none;
	}
}


/* Reduce column sizes for all columns except Symbol at very small screens */
@media (max-width: 599px) {
	/* Change table layout to auto for better flexibility on small screens */
	#agentsTable {
		table-layout: auto;
	}

	/* Reduce table cell padding on small screens */
	#agentsTable th,
	#agentsTable td {
		padding: 6px 4px;
	}

	/* Symbol column - keep flexible but with constraints to ensure table fits */
	#agentsTable th:nth-child(2),  /* Symbol */
	#agentsTable td:nth-child(2) {
		width: auto;
		min-width: 120px;
	}

	/* Aggressively reduce other column widths */
	#agentsTable th:nth-child(3),  /* TimeFrame */
	#agentsTable td:nth-child(3) {
		width: 45px;
	}

	#agentsTable th:nth-child(4),  /* Strategy */
	#agentsTable td:nth-child(4) {
		width: 60px;
	}

	#agentsTable th:nth-child(5),  /* Symbol Type */
	#agentsTable td:nth-child(5) {
		width: 45px;
	}

	#agentsTable th:nth-child(6),  /* Exchange */
	#agentsTable td:nth-child(6) {
		width: 50px;
	}

	#agentsTable th:nth-child(7),  /* Trade Amount */
	#agentsTable td:nth-child(7) {
		width: 60px;
	}

	#agentsTable th:nth-child(8),  /* Total Cost */
	#agentsTable td:nth-child(8) {
		width: 60px;
	}

	#agentsTable th:nth-child(9),  /* Total */
	#agentsTable td:nth-child(9) {
		width: 60px;
	}

	#agentsTable th:nth-child(10),  /* Avg */
	#agentsTable td:nth-child(10) {
		width: 60px;
	}

	#agentsTable th:nth-child(11),  /* Open */
	#agentsTable td:nth-child(11) {
		width: 60px;
	}

	#agentsTable th:nth-child(12),  /* Status */
	#agentsTable td:nth-child(12) {
		width: 100px;
	}
	
	/* Show short exchange header and values on small screens */
	.exchange-header-full {
		display: none;
	}
	
	.exchange-header-short {
		display: inline !important;
	}
	
	.exchange-name-full {
		display: none;
	}
	
	.exchange-name-short {
		display: inline !important;
	}
	
	/* Reduce H1 and stat card sizes on agents page only */
	body:has(#agentsTable) h1 {
		font-size: 24px !important;
	}
	
	body:has(#agentsTable) .stat-card {
		padding: 6px 10px !important;
		min-width: 80px !important;
		max-width: 110px !important;
	}
	
	body:has(#agentsTable) .stat-label {
		font-size: 10px !important;
	}
	
	body:has(#agentsTable) .stat-value {
		font-size: 16px !important;
	}
	
	/* Reduce header logo and text size on all pages */
	.logo {
		font-size: 20px !important;
	}
	
	.header-left {
		font-size: 14px !important;
	}
	
	/* Show mobile toolbar, hide desktop toolbar */
	.toolbar-desktop {
		display: none !important;
	}
	
	.toolbar-mobile {
		display: flex !important;
	}
	
	/* Hide desktop create button on mobile */
	#agentsToolbar .grow.flex.middle.right {
		display: none !important;
	}
}

/* Pagination page number buttons */
.page-number-btn {
	padding: 6px 12px;
	min-width: 36px;
	text-align: center;
	font-size: 14px;
	border-radius: 6px;
	background: rgba(148, 163, 184, 0.1);
	border: 1px solid rgba(148, 163, 184, 0.2);
	color: #cbd5e1;
	transition: all 0.2s ease;
}

.page-number-btn:hover:not(:disabled) {
	background: rgba(148, 163, 184, 0.2);
	border-color: rgba(148, 163, 184, 0.3);
	color: #e2e8f0;
}

.page-number-btn.active {
	background: rgba(59, 130, 246, 0.15);
	border-color: rgba(59, 130, 246, 0.3);
	color: #7dd3fc;
	font-weight: 500;
	box-shadow: 0 0 4px rgba(59, 130, 246, 0.2);
}

.page-number-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.page-ellipsis {
	color: #94a3b8;
	padding: 0 4px;
	font-size: 14px;
	user-select: none;
}

/* System page column widths - make Value and Name columns consistent across all tables */
#timeFramesTable th:nth-child(1),
#timeFramesTable td:nth-child(1),
#symbolsTable th:nth-child(1),
#symbolsTable td:nth-child(1),
#strategiesTable th:nth-child(1),
#strategiesTable td:nth-child(1),
#symbolTypesTable th:nth-child(1),
#symbolTypesTable td:nth-child(1) {
	width: 200px;
	min-width: 200px;
	max-width: 200px;
}

#timeFramesTable th:nth-child(2),
#timeFramesTable td:nth-child(2),
#symbolsTable th:nth-child(2),
#symbolsTable td:nth-child(2),
#strategiesTable th:nth-child(2),
#strategiesTable td:nth-child(2),
#symbolTypesTable th:nth-child(2),
#symbolTypesTable td:nth-child(2) {
	width: 300px;
	min-width: 300px;
	max-width: 300px;
}

/* Symbol Type column width */
#symbolsTable th:nth-child(3),
#symbolsTable td:nth-child(3) {
	width: 150px;
	min-width: 150px;
	max-width: 150px;
}

/* Warning icons */
.symbol-warning,
.timeframe-warning,
.strategy-warning {
	display: inline-block;
	transition: all 0.2s ease;
	cursor: pointer;
	font-size: 16px;
	line-height: 1;
}

.symbol-warning:hover,
.timeframe-warning:hover,
.strategy-warning:hover {
	transform: scale(1.2);
	filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.6));
}

/* Smooth scrolling */
/* html {
	scroll-behavior: smooth;
} */

/* Custom scrollbar */
::-webkit-scrollbar {
	width: 12px;
	height: 12px;
}

::-webkit-scrollbar-track {
	background: #0f172a;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #334155 0%, #475569 100%);
	border-radius: 6px;
	border: 2px solid #0f172a;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, #475569 0%, #64748b 100%);
}

/* Security Page Styles */
.security-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	margin-bottom: 32px;
}

.stat-card {
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.stat-card:hover {
	border-color: rgba(59, 130, 246, 0.4);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.stat-label {
	font-size: 13px;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
	font-weight: 500;
}

.stat-value {
	/* font-size: 28px; */
	font-weight: 700;
	background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.stat-value.sub{
	font-size: 20px;
}

.security-settings {
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 32px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.security-settings .form-row {
	margin-bottom: 20px;
	display: grid;
	grid-template-columns: 200px 150px 1fr;
	align-items: center;
	gap: 16px;
}

.security-settings label {
	font-weight: 600;
	color: #e2e8f0;
}

.security-settings input[type="number"] {
	padding: 8px 12px;
	background: rgba(15, 23, 42, 0.5);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 6px;
	color: #e2e8f0;
	font-size: 14px;
}

.security-settings .help-text {
	font-size: 13px;
	color: #94a3b8;
	font-style: italic;
}

/* Input with prefix (dollar sign, etc.) */
.input-with-prefix {
	position: relative;
	display: block;
}

.input-prefix {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: #94a3b8;
	font-weight: 500;
	font-size: 14px;
	pointer-events: none;
	z-index: 1;
}

.input-with-prefix-field {
	padding-left: 28px !important;
}

/* Dashboard Styles */
.dashboard {
	/* padding: 32px; */
	max-width: 1400px;
	margin: 0 auto;
}

.dashboard h1 {
	margin-bottom: 32px;
	font-size: 32px;
	font-weight: 700;
	color: #e2e8f0;
	background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

.dashboard-stats-time {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
	margin-bottom: 32px;
}

.stat-card {
	background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
	border-color: rgba(59, 130, 246, 0.4);
}

.stat-card-clickable {
	cursor: pointer;
}

.stat-card-clickable:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
	border-color: rgba(59, 130, 246, 0.5);
	background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
}

.stat-label {
	font-size: 14px;
	color: #94a3b8;
	font-weight: 500;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.stat-value {
	font-size: 28px;
	font-weight: 700;
	color: #e2e8f0;
	background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-value.stat-positive {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-value.stat-negative {
	background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-value.stat-neutral {
	color: #94a3b8;
	background: none;
	-webkit-background-clip: unset;
	-webkit-text-fill-color: unset;
	background-clip: unset;
}

.stat-percent {
	color: inherit !important;
	opacity: 1 !important;
	-webkit-text-fill-color: inherit !important;
}

.stat-value.stat-positive .stat-percent {
	color: #10b981 !important;
	-webkit-text-fill-color: #10b981 !important;
}

.stat-value.stat-negative .stat-percent {
	color: #ef4444 !important;
	-webkit-text-fill-color: #ef4444 !important;
}

.stat-value.stat-neutral .stat-percent {
	color: #94a3b8 !important;
	-webkit-text-fill-color: #94a3b8 !important;
}

@media (max-width: 768px) {
	.dashboard {
		padding: 20px;
	}

	.dashboard h1 {
		font-size: 24px;
		margin-bottom: 24px;
	}

	.dashboard-stats {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.dashboard-stats-time {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.stat-card {
		padding: 20px;
	}

	.stat-value {
		font-size: 28px;
	}
}