h1 {
    text-align: center;
    color: #2c3e50;
}

table {
    width: 100%;

    margin: 20px auto;
    border-collapse: collapse;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

th,
td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #1a3761;
    color: white;
    font-weight: bold;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

tr:hover {
    background-color: #ffe4e531;
}

.passport-photo {
    width: 100px;
    /* Passport width */
    height: 140px;
    /* Passport height */
    object-fit: cover;
    /* Ensures image fits without distortion */
    border-radius: 5px;
    border: 1px solid #ccc;
    display: block;
    margin: 0 auto;
}

@media (max-width: 600px) {

    table,
    th,
    td {
        font-size: 14px;
    }

    .passport-photo {
        width: 80px;
        height: 112px;
    }
}