    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: Arial, sans-serif;
        line-height: 1.6;
        color: #333;
        background-color: #f8f9fa;
    }
    
    .top-nav-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }
    
    .nav-menu {
        display: flex;
        list-style: none;
    }
    
    .nav-menu li {
        position: relative;
        margin-right: 20px;
    }
    
    .nav-menu a {
        color: white;
        text-decoration: none;
        font-weight: bold;
        padding: 10px 0;
        display: block;
    }
    
    .nav-menu a:after {
        content: " ▼";
        font-size: 10px;
        vertical-align: middle;
    }
    
    .action-buttons {
        display: flex;
        gap: 10px;
    }
    
    .btn {
        background-color: #d4e157;
        color: #002855;
        border: none;
        padding: 10px 15px;
        border-radius: 5px;
        font-weight: bold;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
    }
    
    .main-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        display: flex;
    }
    
    .content-area {
        flex: 1;
        padding-right: 30px;
    }
    
    .intro-text {
        background-color: white;
        padding: 20px;
        margin-bottom: 30px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .intro-text p {
        margin-bottom: 15px;
    }
    
    .highlight {
        font-weight: bold;
    }
    
    .divider {
        height: 2px;
        background-color: #e5e5e5;
        margin: 30px 0;
    }
    
    .main-heading {
        text-align: center;
        font-size: 28px;
        margin: 20px 0 30px;
        color: #002855;
        text-transform: uppercase;
    }
    
    .charts-container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .chart {
        flex: 1;
        min-width: 300px;
        background-color: white;
        padding: 15px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .chart-title {
        font-size: 14px;
        color: #666;
        margin-bottom: 10px;
    }
    
    .chart-image {
        width: 100%;
        height: 200px;
        background-color: #f0f0f0;
        display: flex;
        align-items: center;
        justify-content: center;
    }   
    
    .sidebar {
        width: 300px;
        position: sticky;
        top: 20px;
        align-self: flex-start;
        background-color: #fff;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        padding: 0;
        overflow: hidden;
    }
    
    .sidebar-title {
        background-color: #f5f5f5;
        padding: 10px 15px;
        font-size: 18px;
        font-weight: bold;
        border-bottom: 1px solid #e5e5e5;
    }
    
    .nav-list {
        list-style: none;
        padding: 15px;
    }
    
    .nav-item {
        margin-bottom: 10px;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 10px;
    }
    
    .nav-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    
    .nav-link {
        display: flex;
        text-decoration: none;
        color: #0056b3;
        transition: color 0.3s;
    }
    
    .nav-link:hover {
        color: #003d7a;
    }
    
    .nav-number {
        min-width: 25px;
        font-weight: bold;
    }
    
    .section {
        margin-bottom: 40px;
        padding: 20px;
        background-color: #fff;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .section-title {
        font-size: 20px;
        margin-bottom: 20px;
        color: #002855;
        border-bottom: 2px solid #e5e5e5;
        padding-bottom: 10px;
    }
    
    @media (max-width: 768px) {
        .main-content {
            flex-direction: column;
        }
        
        .content-area {
            padding-right: 0;
            margin-bottom: 30px;
        }
        
        .sidebar {
            width: 100%;
            position: static;
        }
        
        .charts-container {
            flex-direction: column;
        }
        
        .chart {
            min-width: 100%;
        }
        
        .top-nav-container {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .nav-menu {
            margin-bottom: 15px;
        }
        
        .action-buttons {
            width: 100%;
            justify-content: space-between;
        }
    }

                .wp-table-reloaded {
                    width: 100%;
                    border-collapse: collapse;
                    margin: 20px 0;
                    border: 2px solid #333;
                }
                .wp-table-reloaded th,
                .wp-table-reloaded td {
                    padding: 12px;
                    border: 1px solid #333;
                    text-align: left;
                }
                .wp-table-reloaded thead {
                    background-color: #f5f7fa;
                    font-weight: bold;
                }
                .wp-table-reloaded tbody tr:nth-child(even) {
                    background-color: #f9f9f9;
                }