* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    line-height: 1.4;
    color: #000;
    background-color: #fff;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

header h1 {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 12px;
}

section {
    margin-bottom: 30px;
}

.exploit-description h2 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.exploit-description p {
    font-size: 12px;
    margin-bottom: 10px;
}

.exploit-description ol {
    margin-left: 20px;
    margin-bottom: 10px;
}

.exploit-description li {
    font-size: 12px;
    margin-bottom: 5px;
}

.chart-container h2 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
}

.chart {
    width: 100%;
    min-height: 500px;
}

.chart-diff {
    width: 100%;
    min-height: 300px;
    margin-top: 20px;
}

footer {
    border-top: 1px solid #000;
    padding-top: 10px;
    margin-top: 30px;
    font-size: 11px;
}

/* Tables */
.table-container {
    margin-bottom: 30px;
    overflow-x: auto;
}

.table-container h2 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
}

thead {
    background-color: #f0f0f0;
}

th {
    padding: 8px;
    text-align: left;
    border: 1px solid #000;
    font-weight: bold;
}

td {
    padding: 6px 8px;
    border: 1px solid #ccc;
}

tbody tr:nth-child(even) {
    background-color: #fafafa;
}

tbody tr:hover {
    background-color: #f0f0f0;
}

.total-row {
    border-top: 2px solid #000 !important;
    background-color: #e0e0e0 !important;
}

.total-row td {
    font-weight: bold;
}

code {
    font-family: 'Courier New', monospace;
    font-size: 10px;
}

code a {
    color: #000;
    text-decoration: none;
}

code a:hover {
    text-decoration: underline;
}
