body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: #f4f7f9;
    color: #333;
    line-height: 1.5;
    font-size: 11pt;
}

#report-content {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px 40px 40px 40px;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    border-radius: 8px;
}

.report-header {
    border-bottom: 2px solid #3498db;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.report-header h1 {
    font-size: 2.5rem;
    color: #34495e;
    margin: 0;
}

.report-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-top: 5px;
}

.report-header button {
    padding: 8px 15px;
    font-size: 0.9rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.report-header button:hover {
    background-color: #2980b9;
}

.executive-summary {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.executive-summary h2 {
    margin-top: 0;
    font-size: 1.8rem;
    color: #2c3e50;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.executive-summary ul {
    padding-left: 20px;
}

.executive-summary li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.executive-summary a {
    text-decoration: none;
    color: #2980b9;
    font-weight: 500;
    transition: color 0.2s;
}

.executive-summary a:hover {
    color: #3498db;
    text-decoration: underline;
}

.report-index {
    display: none !important;
}

.client-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #ecf0f1;
}

.client-header h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin: 0;
}

.host-info-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.inventory-table-wrapper, .host-summary-box {
    flex: 1;
    min-width: 300px;
}

.inventory-table {
    width: 100%;
    border-collapse: collapse;
}

.inventory-table td {
    border: 1px solid #e0e0e0;
    padding: 8px 12px;
}

.inventory-table td:first-child {
    font-weight: bold;
    background-color: #f9f9f9;
    width: 40%;
}

.host-summary-box h5 {
    font-size: 1.2rem;
    color: #34495e;
    margin-top: 0;
    border-bottom: 1px solid #ecf0f1;
    padding-bottom: 5px;
}

.charts-area h3 {
    font-size: 1.5rem;
    color: #34495e;
    margin-top: 40px;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 10px;
}

.metric-container {
    margin-top: 30px;
}

.metric-container h4 {
    font-size: 1.2rem;
    color: #34495e;
}

.chart-container {
    width: 100%;
    height: 400px;
    margin-top: 15px;
}

.comment-box {
    background-color: #f0f8ff;
    border-left: 4px solid #3498db;
    padding: 15px;
    margin-top: 15px;
    border-radius: 0 5px 5px 0;
}

.comment-box h5 {
    margin-top: 0;
    color: #34495e;
}