* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.4;
}

/* Header Styles */
.header {
    background-color: #ebebeb;
    padding: 0;
    margin: 0;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
.header-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 20px;
}

.header-image {
    max-width: 400px;
    height: auto;
}   max-width: 50%;
    max-height: 150px;
    object-fit: cover;
    object-fit: cover;
    possition: left;
}

/* Main content */
.main-content {
    background-color: #f5f5f5;
    min-height: calc(100vh - 80px);
    padding: 0;
}

/* Form section with exact background color */
.form-section {
    background-color: #ced7de;
    padding: 20px;
    min-height: 400px;
}

.form-header {
    background-color: #4a6fa5;
    color: white;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    border-bottom: 2px solid #3a5f95;
}

.form-header h2 {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.form-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    align-items: flex-start;
}

.form-left {
    flex: 1;
    max-width: 500px;
}

.form-description {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    margin-bottom: 15px;
    font-size: 12px;
    border-radius: 3px;
    border: 1px solid #ddd;
}

.form-description p {
    margin-bottom: 5px;
}

/* Form styling */
.verification-form {
    background-color: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

.form-table {
    width: 100%;
    border-collapse: collapse;
}

.form-table td {
    padding: 8px 0;
    vertical-align: middle;
}

.form-table label {
    font-size: 12px;
    font-weight: normal;
    color: #333;
    text-align: right;
    display: block;
    padding-right: 10px;
}

.form-table input,
.form-table select {
    width: calc(100% - 20px);
    padding: 4px 6px;
    border: 1px solid #999;
    border-radius: 2px;
    font-size: 12px;
    background: white;
}

.form-table input:focus,
.form-table select:focus {
    outline: none;
    border-color: #4a6fa5;
    box-shadow: 0 0 3px rgba(74, 111, 165, 0.3);
}

.calendar-btn {
    background: #f0f0f0;
    border: 1px solid #999;
    padding: 4px 8px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 12px;
    margin-left: 5px;
}

.calendar-btn:hover {
    background: #e0e0e0;
}

.form-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.btn-buscar,
.btn-limpiar {
    padding: 6px 20px;
    border: none;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-buscar {
    background: linear-gradient(to bottom, #5a7db8, #4a6fa5);
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.btn-buscar:hover {
    background: linear-gradient(to bottom, #4a6fa5, #3a5f95);
    transform: translateY(-1px);
}

.btn-limpiar {
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    color: #333;
    border: 1px solid #ccc;
}

.btn-limpiar:hover {
    background: linear-gradient(to bottom, #e9ecef, #dee2e6);
}

/* Laptop image on the right */
.form-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 400px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-content {
        flex-direction: column;
        align-items: center;
    }

    .form-left {
        max-width: 100%;
    }

    .form-right {
        display: none;
    }
}

.laptop-image {
    text-align: center;
}

.laptop-image img {
    max-width: 350px;
    height: auto;
}

.form-buttons-container {
    background-color: #ced7de;
    padding: 0 20px 20px 20px;
    text-align: center;
}

.form-buttons-container .form-buttons {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #ced7de;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-height: 70vh;
    overflow-y: auto;
}

@media screen and (max-width: 600px) {
    .modal-content {
        width: 95%;
        margin: 20px auto;
    }
}

#qrcode {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

.modal h2 {
    color: hwb(209 70% 21%);
    margin-bottom: 15px;
    font-size: 20px;
    padding: 15px 20px;
    line-height: 1.4;
}

.result-header {
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.success-message {
    color: #28a745;
    font-size: 18px;
    font-weight: bold;
}

.error-message {
    color: #dc3545;
    font-size: 18px;
    font-weight: bold;
}

.result-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 15px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 8px;
    font-size: 13px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 120px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 8px;
    font-size: 11px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid #eee;
    font-size: 11px;
    color: #888;
}

@media (min-width: 768px) {
    .result-body {
        flex-direction: row;
        gap: 30px;
    }
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.photo-caption {
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

.result-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
}

/* Spinner animation */
@keyframes spin {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.result-info {
    flex: 1;
}

.result-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #4a6fa5;
    padding-bottom: 5px;
}

.result-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.status-apto {
    color: #28a745;
    font-weight: bold;
}

.result-photo {
    flex: 0 0 150px;
    text-align: center;
}

.verification-photo {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.verification-photo.zoomed {
    transform: scale(2.5);
    position: relative;
    z-index: 100;
    box-shadow: 0