/* Student-specific styles */
.student-dashboard .welcome-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}

.student-dashboard .welcome-card h2 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.student-dashboard .welcome-card .subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.student-dashboard .quick-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.attendance-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.attendance-calendar .day-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-family: 'IBM Plex Mono', monospace;
}

.attendance-calendar .day-cell.present {
  background: rgba(39, 174, 96, 0.2);
  color: var(--success-light);
}

.attendance-calendar .day-cell.absent {
  background: rgba(231, 76, 60, 0.2);
  color: var(--danger-light);
}

.attendance-calendar .day-cell.late {
  background: rgba(243, 156, 18, 0.2);
  color: var(--warning-light);
}

.attendance-calendar .day-cell.excused {
  background: rgba(52, 152, 219, 0.2);
  color: var(--info);
}

.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  transition: all var(--transition);
}

.payment-card:hover {
  border-color: var(--border-light);
}

.payment-card .month {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
}

.payment-card .amount {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.upload-zone {
  border: 2px dashed var(--border-light);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}

.upload-zone:hover {
  border-color: var(--primary-light);
  background: rgba(212, 175, 55, 0.05);
}

.upload-zone .icon {
  font-size: 2rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.upload-zone .text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.upload-zone .hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.7;
  margin-top: 4px;
}