/*
 * SchoolOS — Minimal extras (brand gold, scrollbar, login tweaks)
 * Everything else is handled by Filament's native ->colors() system
 */

/* Brand name in sidebar = gold */
.fi-brand-name { color: #FFD54A !important; font-weight: 900 !important; letter-spacing: -0.02em !important; }

/* Login logo gold */
.fi-logo { color: #FFD54A !important; font-weight: 900 !important; }

/* Sidebar group labels */
.fi-sidebar-group-label { font-size: 0.65rem !important; font-weight: 800 !important; letter-spacing: .14em !important; text-transform: uppercase !important; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(11,191,85,.3); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: rgba(11,191,85,.5); }

/* Platform dashboard layout pack (Super Admin style mapped to existing palette) */
.so-platform-card {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	background: linear-gradient(180deg, rgba(15, 42, 26, 0.88), rgba(20, 50, 33, 0.88));
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.so-platform-list {
	display: grid;
	gap: 10px;
}

.so-platform-item {
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.03);
	padding: 10px 12px;
}

.so-platform-item-title {
	margin: 0;
	font-size: 0.86rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.96);
}

.so-platform-item-sub {
	margin-top: 2px;
	font-size: 0.75rem;
	color: rgba(220, 252, 231, 0.78);
}

.so-platform-bars {
	display: flex;
	align-items: flex-end;
	gap: 8px;
	height: 140px;
}

.so-platform-bar-col {
	flex: 1;
	min-width: 0;
}

.so-platform-bar {
	width: 100%;
	border-radius: 12px 12px 6px 6px;
	background: linear-gradient(180deg, rgba(11, 191, 85, 1), rgba(255, 213, 74, 0.9));
}

.so-platform-legend {
	margin-top: 8px;
	display: flex;
	justify-content: space-between;
	gap: 8px;
	font-size: 11px;
	color: rgba(220, 252, 231, 0.78);
}

.so-platform-progress {
	width: 100%;
	height: 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	overflow: hidden;
}

.so-platform-progress > span {
	display: block;
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(11, 191, 85, 1), rgba(255, 213, 74, 0.9));
}

.so-platform-actions {
	display: grid;
	gap: 12px;
	grid-template-columns: 1fr;
}

@media (min-width: 900px) {
	.so-platform-actions {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
}
