body {
    font-family: Optima, Segoe, Segoe UI, Candara, Calibri, Arial, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    color: rgb(8, 70, 202);
}

/* File Info row layout */
.file-info-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 5px;
}

.file-info-title {
    text-align: left;
    margin: 0;
}

/* Header with logo and title */
.header-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 10px;
    justify-content: center;
}

.header-logo {
    height: 80px;
    width: auto;
}

.header-title {
    text-align: center;
    margin: 0;
    white-space: nowrap;
}
/* Statistics section */
.stats-title {
    text-align: left;
    margin: 10px 10px 5px 10px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    margin: 10px;
    flex-wrap: wrap;
}

.stat-box {
    background-color: #f0f4ff;
    border: 2px solid rgb(8, 70, 202);
    border-radius: 8px;
    padding: 15px;
    min-width: 150px;
    text-align: center;
    flex: 1;
}

.stat-box h3 {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 600;
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    color: rgb(8, 70, 202);
    margin: 0;
}
