body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
}

.table-container {
    display: table;
    width: 80%;
    margin: 20px auto 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.table-header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    align-items: center;
    background-color: #f2f2f2;
    font-weight: bold;
    padding: 10px;
}

.data-table {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.standard-table {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.standard-table th,
.standard-table td {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.standard-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}



.table-row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.table-header,
.table-cell {
    text-align: center;
    padding: 10px;
}

.table-header {
    background-color: #f2f2f2;
    font-weight: bold;
}

.table-row:nth-child(even) {
    background-color: #f9f9f9; /* Alternate row background color */
}

.table-cell {
    display: table-cell;
    padding: 10px;
}

.table-cell label {
    display: block;
    margin-bottom: 5px;
}

textarea {
    width: 100%;
}

.container {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-row {
    margin-bottom: 10px;
}

label {
    display: block;
    font-weight: bold;
}

input[type="text"],
input[type="password"],
input[type="button"] {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

input[type="button"] {
    padding: 10px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.status {
    margin-top: 10px;
    color: #ff0000;
}

.navigation {
    margin-top: 20px;
}

.navigation a {
    display: inline-block;
    margin-right: 10px;
    color: #0000ff;
    text-decoration: none;
}

.navigation a:hover {
    text-decoration: underline;
}


.report-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.report-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

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

.data-table th,
.data-table td {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.data-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.data-table td:last-child,
.data-table th:last-child {
    text-align: right;
}

.data-table tr:nth-child(even) {
    background-color: #f9f9f9;
}