/* Company list styles */
.company-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.company-list li {
    margin-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.company-list li:last-child {
    border-bottom: none;
}

.company-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #0A1F44; /* Navy blue */
    transition: background-color 0.3s ease;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background-color: #fff;
}

.company-list a:hover {
    background-color: #f5f5f5;
}

.company-name {
    font-size: 18px;
    font-weight: 500;
}

.view-report {
    font-size: 16px;
    font-weight: 600;
    color: #123668; /* Slightly lighter navy blue */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .company-list a {
        flex-direction: column;
        align-items: flex-start;
    }

    .view-report {
        margin-top: 5px;
    }
}
body {
    height: 100%;
    margin: 0;
    padding: 10% 20% 20% 10%;
    font-family: 'Open Sans', sans-serif;
    /* background-color: #f9f9f9; */
    color: #333;
    line-height: 1.6;
    overflow-y: auto;
}