body {
    background-color: #f8f9fa;
}

.header-green {
    background-color: #20c997; /* Зелений фон */
    color: white;
    padding: 30px 0;
    text-align: center;
}

.header-green h1 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.form-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-top: -30px; /* Трохи перекриває заголовок */
}

.table-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-top: 20px;
}

.required-star::after {
    content: ' *';
    color: red;
}

/* Стиль для елементів, які можна перетягувати */
#exercisesTableBody tr {
    cursor: grab;
}

/* ФІКС: Стиль для Select2, щоб він мав ту саму висоту, що й інші поля Bootstrap */
.select2-container--default .select2-selection--single {
    height: 38px;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 36px;
    padding-left: 12px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px;
}