@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


#uploadStatus{
    background: #7b2cbf;
    padding: 2%;
    margin: 0px 0px 10px 0px;
    border-radius: 30px;
    color: white;
        font-size: 14px;
}

.container {
    background-color: #fff;
    padding: 30px 50px;
    border-radius: 20px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    width: 400px;
    text-align: center;
}

.upload-area {
    border: 2px dashed #7b2cbf;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
    transition: background-color 0.3s ease-in-out;
}

.upload-area:hover {
    background-color: #f0f0ff;
}

.upload-area.dragover {
    background-color: #e0f7e0;
    border-color: #4BB543;
}

.upload-icon {
    font-size: 40px;
    color: #7b2cbf;
}

.dynamic-message {
    font-size: 18px;
    color: #333;
    margin: 10px 0;
}

.label {
    font-size: 16px;
    color: #7b2cbf;
    font-weight: bold;
    cursor: pointer;
}

.browse-files-text {
    color: #7b2cbf;
    text-decoration: underline;
}

#fileInput {
    display: none;
}

#uploadButton {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    padding: 10px 30px;
    border: none;
    border-radius: 25px;
    background-color: #7b2cbf;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

#uploadButton:hover {
    background-color: #5a179e;
}

.hidden {
    display: none;
}

.success {
    color: #4BB543;
    font-size: 14px;
    margin-top: 10px;
}

.error {
    color: #BB0000;
    font-size: 14px;
    margin-top: 10px;
}
