.progression-container {
    width: 90%;
    max-width: 400px;
    margin: 20px auto;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.progression-container h2 {
    text-align: center;
    margin-bottom: 10px;
}

.progression-container p {
    font-size: 1em;
    margin: 5px 0;
    color: #333;
}

.progression-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.progression-table th, .progression-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.progression-table th {
    background: #007bff;
    color: white;
}

.progression-table tr:nth-child(even) {
    background: #f2f2f2;
}
.print-button {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 10px auto;
    padding: 10px;
    font-size: 1.2em;
    font-weight: bold;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
}

.print-button:hover {
    background-color: #0056b3;
}