/* Base styles for all reports */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3 {
    color: #0a466e;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 15px;
    background-color: #0a466e;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.back-link:hover {
    background-color: #0d5a8f;
}

/* Header styles */
.header-container {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.logo-section {
    flex-shrink: 0;
    margin-right: 30px;
}

.title-section {
    flex-grow: 1;
}

.title-section h1 {
    margin: 0;
    font-size: 2rem;
}

/* Company logo styles */
.company-logo {
    height: 40px;
    width: auto;
    display: block;
}

/* Center title when no logo */
.header-container:has(> h1) {
    justify-content: center;
}

/* Report specific styling */
.report-content {
    margin-top: 20px;
}