/* Login */
.src-login-container { max-width: 400px; margin: 50px auto; padding: 30px; background: #fff; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.src-login-box h2 { text-align: center; color: #333; margin-bottom: 25px; }
.src-form-group { margin-bottom: 20px; }
.src-form-group label { display: block; margin-bottom: 5px; font-weight: 600; }
.src-form-group input { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 4px; }
.src-btn { display: inline-block; padding: 10px 20px; background: #0073aa; color: #fff; border: none; border-radius: 4px; cursor: pointer; text-decoration: none; }
.src-btn:hover { background: #005a87; }
.src-btn-primary { width: 100%; padding: 12px; font-size: 16px; }
.src-btn-sm { padding: 5px 10px; font-size: 12px; }
.src-btn-pdf { background: #dc3545; }
.src-btn-pdf:hover { background: #c82333; }
.src-message { margin-top: 15px; padding: 10px; border-radius: 4px; display: none; }
.src-message.error { background: #ffe6e6; color: #d00; display: block; }
.src-message.success { background: #e6ffe6; color: #0d0; display: block; }

/* Dashboard */
.src-student-dashboard { max-width: 900px; margin: 0 auto; padding: 20px; }
.src-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 2px solid #eee; }
.src-info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 30px; }
.src-card { background: #f9f9f9; padding: 20px; border-radius: 8px; text-align: center; }
.src-card h4 { margin: 0 0 10px 0; color: #666; font-size: 14px; text-transform: uppercase; }
.src-card p { margin: 0; font-size: 18px; font-weight: bold; color: #333; }
.src-quick-actions { margin-bottom: 30px; padding: 20px; background: #f0f8ff; border-radius: 8px; }
.src-exams-section { margin-top: 30px; }

/* Tables */
.src-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.src-table th, .src-table td { padding: 12px; text-align: left; border-bottom: 1px solid #ddd; }
.src-table th { background: #f5f5f5; font-weight: 600; }
.src-table tr:hover { background: #f9f9f9; }

/* Results */
.src-result-container { max-width: 800px; margin: 0 auto; background: #fff; padding: 40px; box-shadow: 0 0 20px rgba(0,0,0,0.1); }
.src-result-header { text-align: center; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 3px double #333; }
.src-school-info h2 { margin: 0; font-size: 24px; }
.src-student-info { margin-bottom: 20px; }
.src-student-info p { margin: 5px 0; }
.src-pdf-actions { margin: 20px 0; padding: 15px; background: #f9f9f9; border-radius: 5px; text-align: center; }
.src-result-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.src-result-table th, .src-result-table td { border: 1px solid #333; padding: 10px; text-align: center; }
.src-result-table th { background: #f0f0f0; }
.src-pass { color: #0d0; font-weight: bold; }
.src-fail { color: #d00; font-weight: bold; }
.src-result-footer { margin-top: 30px; text-align: center; }

@media print {
    .src-pdf-actions, .src-header button { display: none !important; }
    .src-result-container { box-shadow: none; }
}