body {
    background-color: #1d2228;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: white;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px 0px 20px;
    position: relative;
}

.header button {
    background-color: #1d2228;
    border: none;
    color: #e0fe10;
    padding-top: 60px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
}

.help-button {
    color: green;
    position: absolute;
    right: 20px;
}

.title {
    padding: 0px 20px;
    display: flex;
    align-items: baseline;
}

.title .semaine {
    font-size: 32px;
    font-weight: 700;
    margin-right: 10px;
}

.title .number {
    color: #e0fe10;
    font-size: 64px;
    font-weight: 800;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0px 20px;
}

.card {
    background-color: #2a2e37;
    border: none;
    border-radius: 10px;
    color: #e0fe10;
    padding: 20px 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    flex: 1 0 13%;
    margin: 5px 2px;
    transition: all 0.3s ease;
}

.card.active {
    background-color: #e0fe10;
    color: #2a2e37;
}
.exercise-subtitle {
    margin-left: 20px;
}

.exercise {
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
}

.exercise-title {
    padding-left: 20px;
    padding-bottom: 10px;
}

.exercise .highlight {
    font-size: 30px;
    font-weight: 800;
    color: #e0fe10;
}

.highlight-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #e0fe10;
}

.highlight-subtitle2 {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
}
.progress-bar {
    background-color: #3d3d3d;
    border-radius: 5px;
    width: 100%;
    height: 3px;
    margin-top: 0px;
    overflow: hidden;
}

.progress {
    background-color: #e0fe10;
    height: 100%;
    width: 0; /* Initial width set to 0 */
    border-radius: 5px 0 0 5px;
}

.columns {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
}

.column {
    flex: 1;
    margin: 0 10px;
}

.column-center {
    flex: 0 0 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.column {
    width: 40%; /* Fixed width for first and third columns */
}

.column-center {
    width: 20%; /* Fixed width for middle column */
}

.card-content {
    background-color: #2a2e37;
    border-radius: 50px;
    padding: 20px;
    color: white;
    text-align: center;
    font-size: 24px;
}

.play-button {
    background: none;
    border: none;
    cursor: pointer;
}

.play-button img {
    width: 70px;
    height: 70px;
}

.reset-button {
    background: none;
    border: none;
    color: #e0fe10;
    font-size: 20px;
    cursor: pointer;
    padding-left: 10px;
}

.carousel {
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 100%;
    justify-content: center;
    padding-top: 30px;
}

.carousel-item {
    min-width: 300px;
    min-height: 300px;
    display: none;
    position: relative;
    text-align: center;
    transition: left 0.5s ease-in-out;
}

.carousel-item.active {
    display: block;
}

.carousel-item.prev {
    left: -100%;
}

.carousel-item.next {
    left: 100%;
}

.carousel-item img {
    width: 300px;
    height: 300px;
    border-radius: 20px;
}

#next-exercise {
    margin-top: 20px;
    font-size: 18px;
    text-align: center;
}

/* Overlay for pause state */
.carousel-item.paused::before {
    content: "PAUSE";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(224, 254, 16, 0.7); /* Green overlay with 50% opacity */
    color: #000000;
    font-size: 42px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    height: 300px;
}


/* Existing styles... */

.next-exercise-wrapper {
    padding: 10px 20px;
    border-radius: 10px;
}

.next-exercise-title {
    font-size: 14px;
    font-weight: 300;
    color: #e0fe10;
    margin-bottom: -10px;
    margin-left: 25px;
    margin-top: 20px;
}

.next-exercise-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5px 5px;
    padding: 5px;
    background-color: #2a2e37;
    border-radius: 10px;
}

.next-exercise-image img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
}

.next-exercise-info {
    flex-grow: 1;
    margin-left: 20px;
    color: white;
}

.next-exercise-info #next-exercise-name,
.next-exercise-info #next-exercise-name2 {
    font-size: 16px;
    font-weight: 500;
}

.next-exercise-info #next-exercise-time,
.next-exercise-info #next-exercise-time2 {
    font-size: 16px;
    color: #e0fe10;
    margin-top: 5px;
}

.responsive-img {
    display: block;
    max-width: calc(100% - 40px); /* Full width minus the total margin (20px * 2) */
    height: auto;
    margin: 20px auto; /* 20px margin on top and bottom, auto margin on left and right for centering */
}

.nav-bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #e0fe10; /* Couleur verte */
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.15);
}

.nav-button {
    background: none;
    border: none;
    color: #2a2e37;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px 20px;
    border-radius: 20px;
}

.nav-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.nav-button.active {
    background-color: #2a2e37;
    border: none;
    color: #e0fe10;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    padding: 10px 20px;
}

/* Existing media queries... */


/* Supprimer la règle flex-direction: column dans le media query */
@media (max-width: 600px) {
    .column {
        margin: 5px;
    }

    .column-center {
        flex: 0 0 30%;
    }
}

