﻿/* Убираем лишние отступы и делаем карточки компактными */
.student-card {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 12px 16px;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95em;
  transition: all 0.2s ease;
}

/* Стиль точки по статусу */
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-left: 8px;
  cursor: help;
}

.status-dot.presence-present {
  background-color: #28a745;
}

.status-dot.presence-late {
  background-color: #ffc107;
}

.status-dot.presence-excusedabsence {
  background-color: #17a2b8;
}

.status-dot.presence-unexcusedabsence {
  background-color: #dc3545;
}

.status-dot.presence-none {
  background-color: #6c757d;
}

/* При наведении — показываем подсказку */
.status-dot:hover {
  transform: scale(1.2);
}
