/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}

/* Top Navigation Bar */
.navbar {
    background-color: #0047ab; /* Blue */
    color: white;
    padding: 15px;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar a {
    color: #ffd700; /* Yellow */
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

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

/* Sidebar */
.sidebar {
    background-color: #0047ab; /* Blue */
    color: white;
    position: fixed;
    top: 60px; /* Below the navbar */
    left: 0;
    width: 250px;
    height: 100%;
    padding: 20px;
    box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.sidebar a {
    display: block;
    color: #ffd700; /* Yellow */
    padding: 10px 0;
    text-decoration: none;
    font-weight: bold;
}

.sidebar a:hover {
    background-color: #003580; /* Darker blue */
    padding-left: 10px;
    transition: 0.3s;
}

/* Main Content Area */
.main-content {
    margin-left: 270px; /* Sidebar width + gap */
    margin-top: 80px; /* Navbar height + gap */
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Topic Bars */
.topic-bar {
    background-color: #ffd700; /* Yellow */
    color: #0047ab; /* Blue text */
    padding: 10px 15px;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 1.2em;
    border-radius: 5px;
}

/* Footer */
.footer {
    background-color: #0047ab; /* Blue */
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 0.9em;
    box-shadow: 0px -2px 6px rgba(0, 0, 0, 0.1);
}
/* Table Styles */
.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1em;
    font-family: Arial, sans-serif;
    text-align: left;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.styled-table thead tr {
    background-color: #0047ab; /* Blue */
    color: white;
    text-align: left;
}

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

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

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

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

.styled-table a {
    color: #0047ab; /* Blue */
    text-decoration: none;
    font-weight: bold;
}

.styled-table a:hover {
    text-decoration: underline;
};