* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none; /* Для Safari */
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    background-color: #181818;
    color: #fff;
    /*padding-bottom: env(safe-area-inset-bottom);*/
    /*padding-top: env(safe-area-inset-top);*/
    /*padding-left: env(safe-area-inset-left);*/
    /*padding-right: env(safe-area-inset-right);*/
}

.center-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 70px); /* Reserve space for the SVG button */
    padding: 0 15px;
}

.progress-bar-container {
    margin-top: 10px;
    width: 100%;
    max-width: 355px;
    height: 8px;
    background-color: #202020;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.20);

    /* Резервируем пространство, но скрываем содержимое */
    visibility: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background-color: #fff;
    transition: width 0.3s ease;
}

.progress-text {
    margin-top: 15px;
    font-size: 15px;
    font-weight: 500;

    /* Резервируем пространство, но скрываем содержимое */
    visibility: hidden;
}

.encryption-key {
    margin-top: 15px;
    font-size: 15px;
    text-align: center;
    font-weight: 500;
}

.encryption-textarea {
    margin-top: 15px;
    width: 100%;
    max-width: 355px;
    height: 44px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    text-align: center;
    line-height: 44px;
    color: #ddd;
    background-color: #202020;
    border-radius: 4px;
    border: none;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.20);
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.encryption-textarea.copied {
    color: #ddd;
}

.encryption-textarea:hover {
    transform: scale(1.02);
}

.svg-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px; /* Height of the footer area */
    position: fixed;
    bottom: 10px;
    width: 100%;
}

.svg-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.svg-icon {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.svg-button:hover .svg-icon {
    transform: scale(1.1);
}

.uploaded-files-text {
    margin-top: 10px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    visibility: hidden; /* Скрываем текст, но он занимает место */
    height: 1em; /* Резервируем пространство */
}

.uploaded {
    color: #8E8E8E; /* Делаем слово "uploaded" серого цвета */
}


