body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.menu {
    display: flex;
    flex-wrap: wrap;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
    padding: 10px;
    gap: 10px;
    justify-content: center;
}
.menu a {
    text-decoration: none;
    color: #333;
    text-align: center;
    width: 100px;
    font-size: 12px;
    transition: transform 0.2s, background-color 0.3s;
}
.menu a img {
    width: 20px;
    height: 20px;
}
.menu a:hover {
    background-color: #e9ecef;
}

.menu a:last-child {
    font-weight: bold;
    color: #d9534f;
}
/* Hamburger Menu Styles */
.hamburger {
    display: none;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    background-color: #f8f9fa;
    border: none;
    text-align: left;
    width: 100%;
    border-bottom: 1px solid #ddd;
}
.hamburger:focus {
    outline: none;
}
.menu {
    display: flex;
}
.menu.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .menu {
        flex-direction: column;
        display: none; /* Hidden by default on mobile */
    }
    .menu.show {
        display: flex; /* Show when toggled */
    }
    .menu a {
        width: 100%;
        text-align: left;
        padding: 10px;
        border-bottom: 1px solid #ddd;
    }
    .menu a img {
        width: 20px;
        height: 20px;
        margin-bottom: 0;
        margin-right: 10px;
        vertical-align: middle;
    }
}

    iframe {
            width: 100%;
            height: 100vh;
            border: none;
        }




        
         
 /* General Table Styling */
table.financial-table {
    width: 100%;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: #333;
    background-color: #f9f9f9;
    margin: 20px 0;
    border: 1px solid black; /* Outer table border */
}

/* Table Header */
.financial-table thead {
    background-color: #2b6cb0;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.financial-table thead th {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid black; /* Border around header cells */
    white-space: nowrap; /* Prevent wrapping in header */
}

/* Table Body */
.financial-table tbody tr {
    transition: background-color 0.3s ease;
}

.financial-table tbody tr:nth-child(even) {
    background-color: #f1f5f9;
}

.financial-table tbody tr:hover {
    background-color: #edf2f7;
}

.financial-table tbody td {
    padding: 12px 15px;
    text-align: right;
    border: 1px solid black; /* Border around body cells */
    white-space: nowrap; /* Prevent text wrapping in cells */
}

.financial-table tbody td:first-child {
    text-align: left;
}

/* Highlight Important Rows */
.financial-table tbody tr.total-row {
    font-weight: bold;
    background-color: #2b6cb0;
    color: white;
}

/* Footer Row */
.financial-table tfoot {
    background-color: #edf2f7;
}

.financial-table tfoot td {
    padding: 12px 15px;
    font-weight: bold;
    text-align: right;
    border: 1px solid black; /* Border around footer cells */
    white-space: nowrap; /* Prevent text wrapping in footer */
}

.financial-table tfoot td:first-child {
    text-align: left;
}
