/* Стили загрузки файлов */

.upload-progress-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200001;
}

.upload-progress-modal.hidden {
    display: none;
}

.upload-progress-modal-content {
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    min-width: 300px;
    max-width: 90%;
}

.upload-progress-modal-content .modal-header {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.upload-progress-modal-content .file-name {
    font-size: 1rem;
    margin-bottom: 15px;
    word-break: break-word;
}

.upload-progress-modal-content .progress-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.upload-progress-modal-content progress {
    flex: 1;
    height: 20px;
}

.upload-progress-modal-content #upload-percent {
    font-size: 1.2rem;
    font-weight: bold;
}

.upload-progress-modal-content .status-text {
    font-size: 1rem;
    color: #666;
}

