/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

a {
    color: #0077cc;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Ensure the table spans the full width of the screen with some margin and distinct background */
table {
    width: calc(100% - 2rem); /* Full width minus margin */
    margin: 1rem auto; /* Centered with margin around */
    border-collapse: collapse;
    background-color: #ffffff; /* White background for table */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for distinction */
}

table th, table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #dee2e6;
}

table thead th {
    background-color: #f1f1f1; /* Light gray for header */
    color: #333333; /* Darker text for contrast */
}

table tbody tr:nth-child(odd) {
    background-color: #f9f9f9; /* Slightly different background for odd rows */
}

table tbody tr:nth-child(even) {
    background-color: #ffffff; /* White background for even rows */
}

html, body {
    height: 100%;
    margin: 0;
}

#page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#content-wrap {
    flex: 1;
}

footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 1rem 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}
