/* ===== Заголовки ===== */
h1, h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.centered-text {
    text-align: center;
    font-size: 1.1rem;
    margin: 1.25rem 0;
}

/* ===== Общий контейнер формы ===== */
form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

/* ===== Карточка спортсмена ===== */
.athlete-group {
    border: 1px solid #dee2e6;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    background-color: #f9f9f9;
}

    .athlete-group legend {
        font-size: 1.1rem;
        font-weight: 600;
        color: #343a40;
        margin-bottom: 1rem;
    }

/* ===== Форм-группы для выравнивания ===== */
.form-group {
    margin-bottom: 1rem;
}

    .form-group label {
        font-weight: 500;
        margin-bottom: 0.5rem;
        display: block;
    }

/* ===== 2-колоночный макет на больших экранах ===== */
.row .form-group {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

@media (min-width: 768px) {
    .form-group.half-width {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* ===== Кнопки и действия ===== */
button[type="submit"],
.btn-custom {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    background-color: #0d6efd;
    border: none;
    border-radius: 0.375rem;
    color: #fff;
    transition: background-color 0.3s ease;
}

    button[type="submit"]:hover,
    .btn-custom:hover {
        background-color: #0a58ca;
    }

/* ===== Чекбокс + подписание ===== */
.form-check-label {
    margin-left: 0.5rem;
}

/* ===== Список файлов ===== */
#fileList {
    list-style-type: disc;
    padding-left: 1.25rem;
    margin-top: 1rem;
    font-size: 0.95rem;
}

    #fileList li {
        margin-bottom: 0.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.remove-file {
    margin-left: 0.75rem;
    background: none;
    border: none;
    color: #dc3545;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
}

/* ===== Кастомный переключатель (toggle-switch) ===== */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    margin-left: 10px;
}

    .toggle-switch input[type="checkbox"] {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 15px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 22px;
        width: 22px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

input:checked + .slider {
    background-color: #4CAF50;
}

    input:checked + .slider:before {
        transform: translateX(28px);
    }

/* ===== Стиль сообщения об ошибке ===== */
.text-danger {
    font-size: 0.95rem;
}

/* ===== Предзаявка ===== */
#preApplicationNotice {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* ===== Центрирование блока сверху, если нужно ===== */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 1.5rem auto;
}
