/* custom.css */

body { direction: rtl; }
.hero { background: #350D94 !important; color: #fff; }
.btn-join { background: #1fd655 !important; color: #fff !important; }
.file-card, .file-list, .filter-box { box-shadow: 0 2px 8px #0001; border-radius: 12px; }
.footer { color: #350D94; }

/* قائمة جانبية للإدارة */
.admin-sidebar {
	min-height: 100vh;
	background: #350D94;
	color: #fff;
	width: 240px;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 100;
}
.admin-sidebar .nav-link {
	color: #fff;
	font-size: 1.08em;
	border-radius: 8px;
	margin-bottom: 8px;
	padding: 10px 18px;
	transition: background 0.2s;
}
.admin-sidebar .nav-link.active, .admin-sidebar .nav-link:hover {
	background: #fff;
	color: #350D94 !important;
	font-weight: bold;
}
.admin-sidebar .nav-link.text-warning {
	color: #FFD700 !important;
}

@media (max-width: 991px) {
	.admin-sidebar {
		width: 100%;
		min-height: auto;
		flex-direction: row;
		position: static;
		padding: 8px 0;
	}
	.admin-sidebar .nav-link {
		font-size: 1em;
		margin-bottom: 0;
		padding: 8px 10px;
		display: inline-block;
	}
	main.flex-grow-1 {
		padding: 10px !important;
	}
}
