body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    border-radius: 8px;
    width: 400px;
}

h1 {
    color: #333;
    font-size: 24px;
}

input[type="file"] {
    margin: 10px 0;
}

#uploadBtn {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#uploadBtn:hover {
    background-color: #45a049;
}

.progress-bar {
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin: 20px 0;
    display: none; /* Initially hidden */
}


.progress-bar-fill {
    height: 20px;
    background-color: #76b852;
    width: 0%;
    transition: width 0.5s;
}

#downloadLink {
    background-color: #008CBA;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    margin-top: 10px;
}

#downloadLink:hover {
    background-color: #0077A7;
}
.upload-area {
    border: 2px dashed #cccccc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    margin: 10px 0;
    /*width: 100%;*/
    height: 150px;
}

#chooseFileBtn {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

#chooseFileBtn:hover {
    background-color: #45a049;
}

.upload-area:hover {
    border-color: #999999;
}

.upload-area img {
    max-width: 100px;
    margin-bottom: 10px;
}
.file-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.file-icon {
    width: 30px; /* Adjust size as needed */
    margin-right: 10px;
}

.remove-file {
    margin-left: 10px;
    color: red;
    cursor: pointer;
}

/* Drag and drop area */
#dropArea.dragging {
    border-color: #999999;
    background-color: #f4f4f4;
}
