.record-photo {
    max-width: 100px;
    max-height: 100px;
    cursor: pointer;
}

.record-photo:hover {
    transform: scale(1.1);
    transition: transform 0.2s;
}

/* Dashboard photo thumbnails - smaller than record photos */
.dashboard-photo-thumbnail {
    max-width: 50px;
    max-height: 50px;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

.dashboard-photo-thumbnail:hover {
    transform: scale(1.1);
    transition: transform 0.2s;
    border-color: #0d6efd;
}

/* Manual check-in job ID input styling */
.job-id:disabled {
    background-color: #f8f9fa;
    opacity: 0.6;
    cursor: not-allowed;
}

.table-responsive {
    margin-bottom: 2rem;
}

.navbar {
    margin-bottom: 2rem;
}

.photo-cell {
    text-align: center;
}

/* Employee photo styles */
.employee-photo {
    transition: transform 0.2s;
}

.employee-photo:hover {
    transform: scale(1.1);
}

@keyframes highlight-new-record {
    0% {
        background-color: rgba(40, 167, 69, 0.3);
    }
    100% {
        background-color: transparent;
    }
}

.new-record {
    animation: highlight-new-record 3s ease-out;
}