.exercise-container {
    max-width: 500px;
    margin: 40px auto 0 auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px #0001;
    padding: 32px 18px 28px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.workout-card-image{
    width: 100%;
    max-width: 320px;
    height: 180px;
    min-height: 380px;
    max-height: 180px;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px #0002;
    display: block;
    flex-shrink: 0;
    flex-grow: 0;
}
.workout-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: black;
}
.workout-card-type{
    font-size: 1.08rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 18px;
}
.next-btn {
    margin-top: 15px;
    padding: 12px 25px;
    background: #a50000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.next-btn:hover {
    background: #740000;
    transform: scale(1.05);
}

.next-btn:active {
    transform: scale(0.98);
}