/* Modern Table */

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

.modern-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.modern-table thead {
    background-color: #0077B6;
    color: #ffffff;
}

.modern-table th, .modern-table td {
    padding: 12px 15px;
    border: 1px solid #dddddd;
    text-align: left;
}

.modern-table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.modern-table tbody tr:hover {
    background-color: #e0f7fa;
}

/* Rounded corners for the table header and footer */
.modern-table th:first-child {
    border-top-left-radius: 8px;
}

.modern-table th:last-child {
    border-top-right-radius: 8px;
}


/* Table 2 CSS */
table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

th {
    background-color: #0077B6;
    color: white;
    padding: 10px;
    text-align: left;
}

th:first-child {
    border-top-left-radius: 10px;
}

th:last-child {
    border-top-right-radius: 10px;
}

td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

/*Contemporary Table (In Use) */

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}

.navbar {
    background-color: #0077B6;
}

.navbar a {
    color: white !important;
}

.header {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
}

.logo {
    max-width: 100px;
}

footer {
    text-align: center;
    padding: 10px;
    background: #f8f9fa;
    font-size: 12px;
    color: #0077B6;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

th {
    background-color: #4c92c6;
    color: white;
    padding: 10px;
    font-family: Arial, sans-serif;
    font-weight: normal;
    text-align: left;
}

th:first-child {
    border-top-left-radius: 10px;
}

th:last-child {
    border-top-right-radius: 10px;
}

td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}


/*Creation Date DIV*/
.creationdate {
    text-align: center;
    font-size: 10px;
}

/*Under Construction Image Resize*/
.resized-image {
            width: 200px; /* Adjust the width as needed */
            height: auto; /* Maintain aspect ratio */
}

.blue-text {
            color: #0077B6;
}


