body {
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header, footer {
    text-align: center;
    padding: 10px;
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
    width: 100%;
}

.dashboard-section {
    flex: 1;
    padding: 20px;
    width: 100%;
}

.table-responsive {
    margin-bottom: 30px;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6;
    padding: 8px;
    vertical-align: top;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

pre {
    white-space: pre-wrap; /* Allows wrapping */
    word-wrap: break-word; /* Prevents overflow */
    background-color: #f8f9fa; /* Light grey background */
    padding: 10px;
    border-radius: 5px;
    margin: 0; /* Remove default margin */
}

hr {
    border: 1px solid #dee2e6;
    margin: 20px 0; /* Add space around the horizontal line */
}

.client-details,
.client-profile {
    display: none; /* Hide detailed client rows by default */
}

.table th,
.table td {
    padding: 5px;
}

.client-details td,
.client-profile td {
    padding: 5px;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #ffffff;
    border-top: 1px solid #ddd;
    margin-top: auto;
    width: 100%;
}

#confirmationSection {
    margin-top: 20px;
}
