:root {
	--bg: #030712;
	--card-bg: #111827;
	--card-border: #1f2937;
	--text: #f9fafb;
	--text-muted: #9ca3af;
	--brand: #6366f1;
	/* Indigo */
	--brand-glow: rgba(99, 102, 241, 0.4);
	--accent: #06b6d4;
	/* Cyan */
	--success: #10b981;
	--warning: #f59e0b;
	--font-main: 'Inter', sans-serif;
	--font-display: 'Outfit', sans-serif;
	--nav-height: 64px;
	--mobile-nav-height: 70px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: transparent;
}

html,
body {
	height: 100%;
	font-family: var(--font-main);
	background-color: var(--bg);
	/* Modern Grid Background */
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 40px 40px;
	background-position: center top;
	color: var(--text);
	line-height: 1.6;
}

/* Subtle glow effect in background */
body::before {
	content: '';
	position: fixed;
	top: -50%;
	left: -50%;
	right: -50%;
	bottom: -50%;
	background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.08), transparent 60%);
	z-index: -1;
	pointer-events: none;
}

.app-container {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	padding-bottom: calc(var(--mobile-nav-height) + 20px);
}

@media (min-width: 768px) {
	.app-container {
		padding-bottom: 0;
	}
}

.glass {
	background: rgba(3, 7, 18, 0.8);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--card-border);
}

.app-header {
	position: sticky;
	top: 0;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem 1.5rem;
	height: var(--nav-height);
}

.brand {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.logo-container {
	width: 80px;
	height: 40px;
	border-radius: 2px;
	overflow: hidden;
	box-shadow: 0 0 0 1px var(--card-border);
}

.logo-img {
	width: 100%;
	height: 100%;
	object-fit: fill;
}

.brand {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.logo {
	background: var(--brand);
	color: white;
	border-radius: 8px;
	padding: 0.5rem 0.75rem;
	font-weight: 700;
	font-size: 1.1rem;
	letter-spacing: 0.5px;
}

.titles h1 {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--text);
	background: none;
	-webkit-text-fill-color: var(--text);
}

.titles p {
	display: none;
	/* Hidden on mobile by default */
}

@media (min-width: 768px) {
	.titles p {
		display: block;
		margin: 0.1rem 0 0;
		color: var(--text-muted);
		font-size: 0.875rem;
	}
}

/* Desktop Nav */
.desktop-nav {
	display: none;
	gap: 0.5rem;
	background: var(--card-bg);
	/* Use solid card bg */
	padding: 0.25rem;
	border-radius: 12px;
	border: 1px solid var(--card-border);
}

@media (min-width: 768px) {
	.desktop-nav {
		display: flex;
	}
}

.nav-item {
	background: transparent;
	border: none;
	color: var(--text-muted);
	padding: 0.5rem 1rem;
	border-radius: 8px;
	/* Sharper corners */
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: var(--font-main);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.nav-item svg {
	width: 18px;
	height: 18px;
}

.nav-item:hover {
	color: var(--text);
	background: rgba(255, 255, 255, 0.05);
}

.nav-item.active {
	background: var(--brand);
	/* Indigo */
	color: white;
	box-shadow: 0 4px 12px var(--brand-glow);
}

/* Mobile Nav */
.mobile-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 50;
	display: flex;
	justify-content: space-around;
	padding: 0.5rem;
	border-top: 1px solid var(--card-border);
	background: rgba(3, 7, 18, 0.9);
	/* Opaque dark for mobile nav */
	backdrop-filter: blur(20px);
	height: var(--mobile-nav-height);
}

@media (min-width: 768px) {
	.mobile-nav {
		display: none;
	}
}

.mobile-nav .nav-item {
	flex-direction: column;
	padding: 0.5rem;
	gap: 0.25rem;
	font-size: 0.7rem;
	width: 100%;
	border-radius: 8px;
}

.mobile-nav .nav-item svg {
	width: 24px;
	height: 24px;
	opacity: 0.5;
	transition: all 0.2s;
}

.mobile-nav .nav-item.active {
	background: transparent;
	color: var(--brand);
	box-shadow: none;
}

.mobile-nav .nav-item.active svg {
	opacity: 1;
	transform: translateY(-4px);
	/* Pop up effect */
	filter: drop-shadow(0 4px 8px var(--brand-glow));
}

.mobile-nav .nav-item span {
	opacity: 0.6;
}

.mobile-nav .nav-item.active span {
	opacity: 1;
	font-weight: 600;
}

#content {
	padding: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

.grid {
	display: grid;
	gap: 1.5rem;
}

.card {
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	border-radius: 12px;
	padding: 1.5rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
	border-color: var(--brand);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.btn {
	border: 1px solid transparent;
	border-radius: 8px;
	padding: 0.75rem 1.25rem;
	background: var(--brand);
	color: white;
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: 0 4px 12px var(--brand-glow);
	font-family: var(--font-main);
}

.btn:hover {
	transform: translateY(-1px);
	filter: brightness(1.1);
}

.btn.small {
	padding: 0.5rem 1rem;
	font-size: 0.8rem;
}

.card h3 {
	margin: 0 0 1rem;
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--text);
}

.card h4 {
	margin: 0 0 0.75rem;
	font-size: 1rem;
	font-weight: 600;
	color: var(--text);
}

.card .meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.75rem;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(59, 130, 246, 0.1);
	border: 1px solid rgba(59, 130, 246, 0.2);
	color: #60a5fa;
	border-radius: 9999px;
	padding: 0.25rem 0.6rem;
	font-weight: 500;
	font-size: 0.75rem;
}

.badge.success {
	background: rgba(16, 185, 129, 0.1);
	border-color: rgba(16, 185, 129, 0.2);
	color: #34d399;
}

.badge.warning {
	background: rgba(245, 158, 11, 0.1);
	border-color: rgba(245, 158, 11, 0.2);
	color: #fbbf24;
}

.badge.primary {
	background: rgba(99, 102, 241, 0.1);
	border-color: rgba(99, 102, 241, 0.2);
	color: #818cf8;
}

.kv {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 1rem;
	margin-top: 0.75rem;
	align-items: center;
}

.kv strong {
	color: var(--accent);
	font-weight: 600;
}

.section-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 1rem 0 1.5rem;
}

.section-title h2 {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 600;
}

.app-footer {
	padding: 3rem 1.5rem 2rem;
	color: var(--muted);
	text-align: center;
	border-top: 1px solid var(--border);
	margin-top: 3rem;
}

.separator {
	height: 1px;
	background: var(--border);
	margin: 1rem 0;
}

.notice {
	background: #0c2e2a;
	border: 1px solid #14524a;
	color: #9fe6da;
	padding: 1rem;
	border-radius: 8px;
	font-size: 0.875rem;
	margin-top: 1rem;
}

.seating-plan {
	background: #1e293b;
	border: 1px solid #334155;
	border-radius: 8px;
	padding: 1rem;
	margin-top: 1rem;
}

.seating-plan h4 {
	margin: 0 0 0.75rem;
	color: var(--accent);
	font-size: 1rem;
}

.seating-grid {
	display: grid;
	gap: 0.5rem;
}

.seating-row {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

.seating-row .label {
	font-weight: 500;
	color: var(--muted);
	min-width: 60px;
}

.seating-row .seats {
	display: flex;
	gap: 0.25rem;
	flex-wrap: wrap;
}

.seat {
	background: var(--brand);
	color: white;
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 500;
}

.seat.available {
	background: var(--success);
}

.seat.occupied {
	background: var(--muted);
}

.day-selector {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.day-btn {
	padding: 0.5rem 1rem;
	border: 1px solid var(--card-border);
	background: var(--card-bg);
	color: var(--text-muted);
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 0.875rem;
	font-weight: 500;
}

.day-btn:hover {
	background: var(--card-border);
	color: var(--text);
}

.day-btn.active {
	background: var(--brand);
	border-color: var(--brand);
	color: white;
	box-shadow: 0 4px 12px var(--brand-glow);
}

.branch-selector {
	margin-bottom: 1.5rem;
}

.branch-selector h3 {
	margin-bottom: 1rem;
}

.branch-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 1rem;
}

.branch-card {
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	border-radius: 12px;
	padding: 1.25rem 1rem;
	cursor: pointer;
	transition: all 0.2s ease;
	text-align: center;
	min-height: 90px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.branch-card:hover {
	background: rgba(99, 102, 241, 0.05);
	border-color: var(--brand);
	transform: translateY(-2px);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.branch-card h3 {
	margin: 0;
	font-size: 1.1rem;
}

.branch-card.selected {
	background: var(--brand);
	border-color: var(--brand);
	color: white;
}

.branch-card p {
	margin: 0.25rem 0 0;
	font-size: 0.75rem;
	opacity: 0.8;
}

.venue-summary {
	margin-top: 1rem;
}

.venue-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem;
	background: rgba(6, 182, 212, 0.1);
	border: 1px solid rgba(6, 182, 212, 0.2);
	border-radius: 8px;
	margin-bottom: 0.5rem;
}

.venue-item:last-child {
	margin-bottom: 0;
}

.update-banner {
	border: 1px solid rgba(16, 185, 129, 0.2);
	background: rgba(16, 185, 129, 0.1);
	color: #34d399;
}

.offline-banner {
	background: rgba(245, 158, 11, 0.1);
	color: #fbbf24;
	border: 1px solid rgba(245, 158, 11, 0.2);
	padding: 0.75rem 1rem;
	border-radius: 8px;
	margin: 0 0 0.75rem 0;
	font-size: 0.9rem;
}

/* Timetable table styles */
.table-container {
	width: 100%;
	overflow-x: auto;
}

.timetable-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	border-radius: 12px;
	overflow: hidden;
}

.timetable-table th,
.timetable-table td {
	padding: 0.875rem 1rem;
	border-bottom: 1px solid var(--card-border);
	text-align: left;
}

.timetable-table thead th {
	position: sticky;
	top: 0;
	background: var(--card-border);
	z-index: 1;
}

.timetable-table tbody tr:hover {
	background: rgba(255, 255, 255, 0.02);
}

.time-cell {
	width: 120px;
	white-space: nowrap;
	color: var(--accent);
	font-weight: 600;
}

.class-cell {
	color: var(--text);
	min-width: 200px;
}

.lunch-row td {
	background: rgba(245, 158, 11, 0.1);
	color: #f59e0b;
	font-weight: 600;
}

/* Responsive tweaks */
@media (max-width: 640px) {
	.timetable-table {
		font-size: 0.85rem;
	}

	.timetable-table th,
	.timetable-table td {
		padding: 0.75rem 0.75rem;
	}

	.time-cell {
		width: auto;
		min-width: 80px;
		white-space: normal;
		font-size: 0.8rem;
	}

	.class-cell {
		min-width: unset;
		white-space: normal;
	}

	.titles h1 {
		font-size: 1.1rem;
	}

	.titles p {
		font-size: 0.8rem;
	}

	.tab {
		font-size: 0.8rem;
		padding: 0.6rem 0.75rem;
	}

	.time-cell {
		width: 110px;
	}
}

.venue-item strong {
	color: var(--accent);
	font-weight: 600;
	min-width: 80px;
}

.schedule-list {
	display: grid;
	gap: 1rem;
}

.schedule-item {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 1rem;
	padding: 1rem;
	background: rgba(6, 182, 212, 0.05);
	border: 1px solid rgba(6, 182, 212, 0.1);
	border-radius: 8px;
	align-items: start;
}

.schedule-time {
	font-weight: 600;
	color: var(--accent);
	font-size: 0.875rem;
}

.schedule-content {
	display: grid;
	gap: 0.5rem;
}

.schedule-title {
	font-weight: 600;
	color: var(--text);
	font-size: 1rem;
}

.schedule-speaker {
	color: var(--muted);
	font-size: 0.875rem;
}

.schedule-notes {
	color: var(--muted);
	font-size: 0.875rem;
	font-style: italic;
}

/* Scrollable wrapper for timetable */
.table-container {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

/* Timetable-specific styling */
.timetable-table {
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
	min-width: 350px;
	/* ensures table won't collapse */
	font-size: 0.8rem;
	background: var(--card);
}

/* Cells */
.timetable-table th,
.timetable-table td {
	padding: 0.5rem;
	text-align: left;
	white-space: nowrap;
	/* prevents ugly wrapping */
}

.timetable-table th {
	background: #1a202c;
	color: var(--accent);
	font-weight: 600;
}

.timetable-table td {
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

/* Rounded corners */
.timetable-table tr:first-child th:first-child {
	border-top-left-radius: 8px;
}

.timetable-table tr:first-child th:last-child {
	border-top-right-radius: 8px;
}

.timetable-table tr:last-child td:first-child {
	border-bottom-left-radius: 8px;
}

.timetable-table tr:last-child td:last-child {
	border-bottom-right-radius: 8px;
}

/* Mobile-specific tweaks */
@media (max-width: 768px) {
	.timetable-table {
		font-size: 0.75rem;
		min-width: 500px;
		/* force horizontal scroll */
	}
}

.venue-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	margin-top: 1rem;
	border-radius: 8px;
	overflow: hidden;
}

.venue-table tr {
	background: var(--card);
}

.venue-table td,
.venue-table th {
	padding: 0.875rem;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	text-align: left;
}

.venue-table th {
	color: var(--accent);
	font-size: 0.875rem;
	font-weight: 600;
	background: #1a202c;
}

.venue-table tr:first-child td:first-child,
.venue-table tr:first-child th:first-child {
	border-top-left-radius: 8px;
}

.venue-table tr:first-child td:last-child,
.venue-table tr:first-child th:last-child {
	border-top-right-radius: 8px;
}

.venue-table tr:last-child td:first-child {
	border-bottom-left-radius: 8px;
}

.venue-table tr:last-child td:last-child {
	border-bottom-right-radius: 8px;
}

.schedule-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	margin-top: 1rem;
	border-radius: 8px;
	overflow: hidden;
}

.schedule-table tr {
	background: var(--card);
}

.schedule-table td,
.schedule-table th {
	padding: 0.875rem;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	text-align: left;
	vertical-align: top;
}

.schedule-table th {
	color: var(--accent);
	font-size: 0.875rem;
	font-weight: 600;
	background: #1a202c;
}

.schedule-table tr:first-child td:first-child,
.schedule-table tr:first-child th:first-child {
	border-top-left-radius: 8px;
}

.schedule-table tr:first-child td:last-child,
.schedule-table tr:first-child th:last-child {
	border-top-right-radius: 8px;
}

.schedule-table tr:last-child td:first-child {
	border-bottom-left-radius: 8px;
}

.schedule-table tr:last-child td:last-child {
	border-bottom-right-radius: 8px;
}

.group-section {
	margin-bottom: 2rem;
}

.group-section:last-child {
	margin-bottom: 0;
}

.group-section h4 {
	margin: 0 0 1rem;
	color: var(--brand);
	font-size: 1rem;
	font-weight: 600;
}

/* Coming Soon Styles */
.coming-soon {
	text-align: center;
	padding: 3rem 2rem;
	background: linear-gradient(135deg, var(--card) 0%, var(--bg) 100%);
	border: 2px solid var(--accent);
}

.coming-soon-content h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: var(--accent);
}

.coming-soon-content p {
	margin-bottom: 1rem;
	color: var(--muted);
	line-height: 1.6;
}

.coming-soon-content ul {
	text-align: left;
	max-width: 400px;
	margin: 1.5rem auto;
	padding-left: 2rem;
}

.coming-soon-content li {
	margin-bottom: 0.5rem;
	color: var(--muted);
}

.coming-soon-content .notice {
	background: var(--bg);
	padding: 1rem;
	border-radius: 8px;
	border-left: 4px solid var(--accent);
	margin-top: 2rem;
	text-align: left;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.coming-soon-content .notice strong {
	color: var(--accent);
}

/* Timetable Styles */
.timetable-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	margin-top: 1rem;
	border-radius: 8px;
	overflow: hidden;
}

.timetable-table tr {
	background: var(--card);
}

.timetable-table td,
.timetable-table th {
	padding: 0.875rem;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	text-align: left;
	vertical-align: top;
}

.timetable-table th {
	color: var(--accent);
	font-size: 0.875rem;
	font-weight: 600;
	background: #1a202c;
}

.timetable-table tr:first-child td:first-child,
.timetable-table tr:first-child th:first-child {
	border-top-left-radius: 8px;
}

.timetable-table tr:first-child td:last-child,
.timetable-table tr:first-child th:last-child {
	border-top-right-radius: 8px;
}

.timetable-table tr:last-child td:first-child {
	border-bottom-left-radius: 8px;
}

.timetable-table tr:last-child td:last-child {
	border-bottom-right-radius: 8px;
}

/* Timetable cell styles */
.time-cell {
	font-weight: 600;
	color: var(--accent);
	min-width: 120px;
}

.class-cell {
	min-width: 300px;
	color: var(--text);
	line-height: 1.4;
}

/* Lunch row styling */
.lunch-row {
	background: rgba(34, 197, 94, 0.1) !important;
}

.lunch-row .class-cell {
	color: #22c55e;
}

/* Change branch button */
.btn-outline {
	background: transparent;
	border: 1px solid var(--border);
	color: var(--text);
	padding: 0.5rem 1rem;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s;
}

.btn-outline:hover {
	background: var(--border);
	border-color: var(--accent);
}

@media (max-width: 768px) {
	.tabs {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.5rem;
		padding: 0.75rem 1rem 0.5rem;
	}

	#content {
		padding: 0.75rem 1rem;
	}

	.app-header {
		padding: 0.75rem 1rem;
	}

	.titles h1 {
		font-size: 1.125rem;
	}

	.titles p {
		font-size: 0.75rem;
	}

	.branch-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.schedule-item {
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}

	.schedule-time {
		text-align: center;
		padding: 0.5rem;
		background: rgba(6, 182, 212, 0.1);
		border-radius: 6px;
	}

	/* Mobile table styles */
	.venue-table,
	.schedule-table {
		font-size: 0.75rem;
	}

	.venue-table td,
	.venue-table th,
	.schedule-table td,
	.schedule-table th {
		padding: 0.5rem;
	}

	/* Make venue table more mobile-friendly */
	.venue-table {
		min-width: 100%;
	}

	.venue-table th,
	.venue-table td {
		word-wrap: break-word;
		max-width: 120px;
	}

	/* Hide some columns on mobile for schedule table to save space */
	.schedule-table th:nth-child(3),
	.schedule-table th:nth-child(4),
	.schedule-table td:nth-child(3),
	.schedule-table td:nth-child(4) {
		display: none;
	}

	.timetable-wrapper {
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	/* Make timetable table mobile-friendly */
	.timetable-table {
		min-width: 100%;
		font-size: 0.75rem;
	}

	.timetable-table td,
	.timetable-table th {
		padding: 0.5rem;
		word-wrap: break-word;
	}

	.timetable-table .time-cell {
		min-width: 80px;
	}

	.timetable-table .class-cell {
		min-width: 120px;
	}

	.timetable-table .groups-cell {
		min-width: 60px;
	}

	.timetable-table .venue-cell {
		min-width: 80px;
	}

	/* Keep all venue table columns visible on mobile */
}

/* Update notification banner */
.update-notification {
	background: rgba(16, 185, 129, 0.12);
	color: #6ee7b7;
	border: 1px solid rgba(16, 185, 129, 0.35);
	padding: 1rem 1.25rem;
	border-radius: 8px;
	margin: 0 0 1rem 0;
	font-size: 0.95rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

/* Night canteen table styles */
.table-wrapper {
	width: 100%;
	overflow-x: auto;
	border-radius: 8px;
	margin: 1rem 0;
}

.canteen-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 8px;
	font-size: 0.95rem;
}

.canteen-table th,
.canteen-table td {
	padding: 0.875rem 1rem;
	border-bottom: 1px solid var(--border);
	text-align: left;
}

.canteen-table thead th {
	background: #1f2937;
	font-weight: 600;
	color: var(--accent);
	position: sticky;
	top: 0;
	z-index: 1;
}

.canteen-table tbody tr:hover {
	background: rgba(255, 255, 255, 0.02);
}

.canteen-table td:last-child {
	text-align: right;
	font-weight: 500;
	color: var(--success);
}