/* students/static/students/css/students.css */
.student-photo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.student-photo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    background-color: #6c757d;
}

.attendance-badge-present {
    background-color: #28a745;
    color: white;
}

.attendance-badge-absent {
    background-color: #dc3545;
    color: white;
}

.attendance-badge-off {
    background-color: #17a2b8;
    color: white;
}

.attendance-badge-late {
    background-color: #ffc107;
    color: #212529;
}