body {
    font-family: Arial, sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #f0f0f0;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    font-size: 3em;
    margin: 0;
}

main {
    flex: 1;
    padding: 20px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.subject {
    color: rgb(0, 71, 90);
    text-decoration: none;
}

footer {
    padding: 10px;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1em;
    font-family: Arial, sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

table thead tr {
    background-color: rgb(0, 71, 90);
    color: #ffffff;
    text-align: left;
}

table th,
table td {
    padding: 12px 15px;
}

table tbody tr {
    border-bottom: 1px solid #dddddd;
}

table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

table tbody tr:last-of-type {
    border-bottom: 2px solid rgb(0, 71, 90);
}

table tbody tr:hover {
    background-color: #f1f1f1;
}

.styled-data-cell {
    text-align: center;
    vertical-align: middle;
    background-color: #ddeeff;
}

/* Breadcrumb Navigation Styling */
.breadcrumb {
    padding: 10px 20px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.breadcrumb a {
    color: rgb(0, 71, 90);
    text-decoration: none;
}

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

.breadcrumb span {
    color: #666;
}

/* Responsive Table Styling */
@media screen and (max-width: 768px) {
    table {
        width: 100%;
        min-width: unset;
        font-size: 0.9em;
    }
    
    table th,
    table td {
        padding: 8px 10px;
    }
    
    main {
        padding: 10px;
        width: 100%;
    }
    
    /* Make table content responsive */
    thead th {
        white-space: nowrap;
    }
    
    td {
        word-break: break-word;
    }
    
    /* Handle overflow for small screens */
    main {
        overflow-x: auto;
    }
}

/* Extra small screens */
@media screen and (max-width: 480px) {
    table {
        font-size: 0.8em;
    }
    
    th, td {
        padding: 6px 8px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.5em;
    }
}