﻿.attendance-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh; /* Ajusta esto según el diseño de tu página */
    text-align: center;
}

.fingerprint-wrapper {
    border: 2px solid;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: border-color 0.5s ease-in-out, background-color 0.5s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .fingerprint-wrapper.green {
        border-color: #28a745; /* Verde Bootstrap */
        background-color: #d4edda; /* Verde claro Bootstrap */
        color: #155724; /* Texto verde oscuro */
    }

    .fingerprint-wrapper.gray {
        border-color: #6c757d; /* Gris Bootstrap */
        background-color: #e2e6ea; /* Gris claro Bootstrap */
        color: #383d41; /* Texto gris oscuro */
    }

.fingerprint-icon {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    /* Puedes usar un SVG para mayor escalabilidad */
}

.fingerprint-wrapper p {
    font-size: 1.2em;
    font-weight: bold;
}
