body {
    font-family: monospace;
    background-color: #f8f9fa;
    margin: 0;
}

#uploader-container {
    text-align: center;
    margin: 50px auto;
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 100%;
    max-width: 1000px;
}

.file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.file-icon {
    font-size: 40px;
}

.file-text {
    font-size: 16px;
    margin-top: 10px;
}

#fileInput {
    display: none;
}

#uploadBtn {
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

#uploadProgress {
    width: 100%;
    margin-top: 20px;
}

#message {
    margin-top: 20px;
    font-weight: bold;
    color: #dc3545;
}

#dropArea {
    border: 2px dashed #ced4da;
    background-color: #f8f9fa;
    color: #495057;
    padding: 80px;
    border-radius: 10px;
    transition: background-color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
}

#dropArea.dragover {
    background-color: #d4edda;
}


#urlContainer
{
    padding: 20px;
    font-size: 25px;
    background: #eee;
    border-radius: 22px;
    width: 100%;
    display: none;
}


#buttonContainer
{
    float: left;
    padding: 20px;
    display: none;
}

#qrCodeContainer
{
    display: none;
    margin: 20px;
}


.download-box
{
    width: 977px;
    min-height: 402px;
    padding: 70px 30px;
    max-width: 1000px;
    border-radius: 20px;
    background-color: #fef4e9;
    text-align: center;
}

.download-button
{
    color: #ffffff !important;
    background-color: #2e937a !important;
    font-size: 36px;
    padding: 20px;
    font-family: monospace;
    margin-top: 60px;
}


.footer-text
{
    margin-top: 50px;
    display: block;
    padding: 20px;
    font-size: 20px;
}


