
        body {

display: block; /* Замените flex на block, чтобы отключить выравнивание Flexbox */
    margin: 0;
    padding: 20px; /* Убедитесь, что отступ в 20px вам подходит */
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;            

//font-family: Arial, sans-serif;
  //          background-color: #f4f4f4;
    //        margin: 0;
      //      padding: 20px;
        }
        .form-container {
            width: 30%;
			right: 10px;
            margin: auto;
            padding: 20px;
            background: #eaeaea;
            border-radius: 8px;
            box-shadow: 8px 4px 8px rgba(0,0,0,0.3);
        }
        input[type="file"], input[type="submit"] {
            width: 100%;
            margin-top: 10px;
        }
        input[type="submit"] {
            padding: 10px;
            background-color: #4CAF50;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        input[type="submit"]:hover {
            background-color: #45a049;
        }
        #progressBar {
            width: 0%;
            height: 20px;
            background-color: #4CAF50;
            color: white;
            text-align: center;
            border-radius: 5px;
        }
        #progressBarContainer {
            width: 100%;
            background-color: #ccc;
            border-radius: 5px;
            margin-top: 10px;
        }
        .modal {
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.4);
        }
        .modal-content {
            background-color: #fefefe;
            margin: 15% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            text-align: center;
        }
        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }
        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }
#video-player {
    width: 100%;
    max-width: 40%;
    height: auto; /* Автоматический расчет высоты */
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

#video-player .close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    background-color: #ff0000;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    cursor: pointer;
}
#video-player video {
    width: 100%; /* Гарантируем, что видео заполнит контейнер по ширине */
    max-height: 40.25vw; /* Расчет на основе соотношения 16:9 (9 / 16 * 100) */
    object-fit: contain; /* Видео будет масштабироваться, чтобы поместиться в контейнер, сохраняя пропорции */
    object-position: center; /* Видео будет отцентрировано внутри контейнера */
}
