body {
    font-family: Arial, sans-serif;
}

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

th, td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 30%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Smaller size */
.report-card-image {
    max-width: 100%; /* Ensure images don't exceed their container width */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Ensure proper rendering as block elements */
    margin: 0 auto; /* Center the images horizontally */
}

/* Normal size when enlarged */
.report-card-image.enlarged {
    margin-left: auto;
    margin-right: auto;
    width: auto;
    height: auto;
}

/* CSS for the password field container */
.input-container {
    margin: 10px 0; /* Adjust margin as needed */
}

/* CSS for the password input field */
#passwordInput {
    width: 100%; /* Ensure the input field takes up the full width */
    padding: 8px; /* Add padding for better appearance */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}

.container {
    max-width: 600px; /* Adjust as needed */
    margin: 0 auto; /* Center the container horizontally */
    padding: 0 20px; /* Add padding for better appearance */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}