/* Alap stílusok az oldalhoz */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    overflow-y: auto; /* Görgetés engedélyezése */
    display: flex;
    justify-content: center;
    min-height: 100vh; /* Oldal minimális magassága */
}

.container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 90%; /* Mobilbarát szélesség */
    max-width: 800px;
    margin: 10px 0; /* Távolság a tartalom körül */
}

/* Cím és gomb stílusok */
h1 {
    text-align: center;
    color: #333;
}

.timer {
    font-size: 28px;
    color: #ff5722;
    margin-top: 10px;
    text-align: center;
}

button {
    display: block;
    margin: 20px auto;
    padding: 20px 30px;
    font-size: 20px;
    background-color: #388e3c;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #2e7d32;
}

/* Táblázat stílusok */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
}

table thead {
    background-color: #388e3c;
    color: white;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 8px;
}

table th {
    text-align: center;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}


.active {
    background-color: #abedb1 !important;
    font-weight: bold;
    color: #388e3c;
}

.completed {
    color: #dcd9d9;
}

/* Konténer kerete */
.exercise-container {
    border: 2px solid #388e3c;
    padding: 20px;
    border-radius: 8px;
    background-color: #e8f5e9;
    margin-bottom: 20px;
    text-align: center;
}
/* Kiemelt gyakorlat konténer */
.exercise-container {
    border: 2px solid #388e3c;
    padding: 20px;
    border-radius: 8px;
    background-color: #e8f5e9;
    margin-bottom: 20px;
    text-align: center;
}

.exercise-container h2 {
    margin: 0 0 20px;
    font-size: 36px;
    color: #333;
}

.exercise-details {
    margin-top: 15px;
    font-size: 28px; /* Nagyobb betűméret */
    color: #555;
}

.exercise-details span {
    display: block; /* Minden adat új sorban */
    margin-top: 10px;
    font-weight: bold; /* Kiemelt szöveg */
    color: #388e3c;
}
/* Aktuális idő kijelző */
.current-time {
    font-size: 24px;
    color: #555;
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
    font-family: 'Courier New', Courier, monospace;
}
.summary {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-align: center;
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}
/* Szakasz fejlécek */
.section-header th {
    background-color: #388e3c;
    color: white;
    text-align: left;
    font-size: 18px;
    padding: 10px;
}
.active {
    background-color: #f0f8ff; /* Világoskék háttér */
    font-weight: bold;
}

.section-header {
    background-color: #388e3c;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
}

