body {
    font-family: Arial, sans-serif;
    margin: 0px;
}

.upload-container {
    text-align: center;
    margin-top: 30px;
}

#folderInput {
    border: 4px dashed rgb(246, 101, 20);
    padding: 20px;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 122, 102, 0.2), rgba(255, 122, 102, 0.3));
    cursor: pointer;
    height: 200px;
    text-align: center !important;
}

.upload-label {
    border: 4px dashed rgb(246, 101, 20);
    padding: 20px;
    width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 122, 102, 0.2), rgba(255, 122, 102, 0.3));
    cursor: pointer;
    height: 200px;
    font-size: 24px;
    color: rgb(0, 72, 87);
}
.upload-wrapper {
    display: flex;
    flex-direction: column; /* Aligns children vertically */
    align-items: center; /* Centers items horizontally */
    margin: 0 auto; /* Center the wrapper */
}
.upload-instruction {
    font-size: smaller;
    text-align: center; /* Center the text */
    margin-top: 10px; /* Optional: adds space between label and span */
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: rgb(0, 72, 87);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
