.academy-dashboard .add-form .form-section h4{
	color: var(--primary) !important;
	margin-bottom: 15px;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.academy-dashboard .photo-upload-area{
	border: 2px dashed #ddd;
	border-radius: 8px;
	padding: 30px;
	text-align: center;
	cursor: pointer;
	transition: border-color 0.3s, background 0.3s;
	outline: none;
	background: #fff;
	position: relative;
}
.dark-mode .academy-dashboard .photo-upload-area{ border-color: #555; background: #1a1a1a; }
.academy-dashboard .photo-upload-area:hover,
.academy-dashboard .photo-upload-area:focus,
.academy-dashboard .photo-upload-area.dragover{
	border-color: #FFD700;
	background: rgba(255, 215, 0, 0.07);
}
.academy-dashboard .photo-upload-area:active{ border-color: #B8860B; }
.academy-dashboard .photo-upload-area img{
	margin-top: 10px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.academy-dashboard .sticky-footer{
	position: sticky;
	bottom: 0;
	background: inherit;
	z-index: 10;
	padding: 1rem 0 0 0;
	margin-top: 1.5rem;
	box-shadow: 0 -2px 10px rgba(0,0,0,0.04);
}

.academy-dashboard .switch{
	position: relative;
	display: inline-block;
	width: 46px;
	height: 24px;
	margin-left: 10px;
	vertical-align: middle;
}
.academy-dashboard .switch input{ opacity: 0; width: 0; height: 0; }
.academy-dashboard .slider{
	position: absolute;
	cursor: pointer;
	top: 0; left: 0; right: 0; bottom: 0;
	background-color: #ccc;
	transition: .4s;
	border-radius: 24px;
}
.academy-dashboard .slider:before{
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	transition: .4s;
	border-radius: 50%;
}
.academy-dashboard input:checked + .slider{ background-color: #FFD700; }
.academy-dashboard input:focus + .slider{ box-shadow: 0 0 1px #FFD700; }
.academy-dashboard input:checked + .slider:before{ transform: translateX(22px); }

.academy-dashboard .add-popup{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 2000;
	justify-content: center;
	align-items: center;
}
.academy-dashboard .add-popup.active{ display: flex; }

.academy-dashboard .add-form{
	background-color: #f9f9f9;
	color: #333;
	padding: 2rem;
	border-radius: 10px;
	width: 90%;
	max-width: 800px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
	max-height: 90vh;
	overflow-y: auto;
}
.dark-mode .academy-dashboard .add-form{ background-color: #1a1a1a; color: #f9f9f9; }

.academy-dashboard .academy-stats{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}
.academy-dashboard .stat-card{
	background-color: white;
	border-radius: 10px;
	padding: 1.5rem;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.dark-mode .academy-dashboard .stat-card{ background-color: #121212; }
.academy-dashboard .stat-card i{ font-size: 2rem; color: #FFD700; margin-bottom: 1rem; }
.academy-dashboard .stat-card h3{ font-size: 2rem; margin-bottom: 0.5rem; color: #FFD700; }
.academy-dashboard .stat-card p{ color: #777; }
.dark-mode .academy-dashboard .stat-card p{ color: #aaa; }

.academy-dashboard .form-group{ margin-bottom: 1rem; }
.academy-dashboard .form-group label{ display: block; margin-bottom: 0.5rem; font-weight: 500; }
.academy-dashboard .form-control{
	width: 100%;
	padding: 0.8rem;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 1rem;
	background-color: #f9f9f9;
	color: #333;
}
.dark-mode .academy-dashboard .form-control{ background-color: #121212; color: #f9f9f9; border-color: #444; }

.academy-dashboard .form-row{ display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; }
.academy-dashboard .form-row .form-group{ flex: 1; min-width: 200px; }

.academy-dashboard .btn{
	display: inline-block;
	background-color: #FFD700;
	color: #121212;
	padding: 0.7rem 1.5rem;
	border-radius: 30px;
	text-decoration: none;
	font-weight: bold;
	transition: all 0.3s;
	cursor: pointer;
	border: none;
}
.academy-dashboard .btn:hover{ background-color:#B8860B; transform:translateY(-3px); box-shadow:0 5px 15px rgba(0,0,0,0.2); }

@media (max-width:768px){
	.academy-dashboard .form-row{ flex-direction: column; }
}
