body {
    background-color: #121212;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
}

.container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 20px;
    max-width: 500px;
    text-align: center;
}

.drag-area {
    border: 2px dashed #6200ea;
    border-radius: 20px;
    padding: 20px;
    cursor: pointer;
    position: relative;
}

.drag-area input[type="file"] {
    display: none;
}

.drag-area p {
    margin: 0;
    font-size: 18px;
    color: #e0e0e0;
}

.drag-area svg {
    width: 24px;
    height: 24px;
    fill: #6200ea;
    margin-bottom: 10px;
}

.file-list {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.file-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.044);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
}

.file-list-item button {
    background: none;
    border: none;
    color: #6200ea;
    cursor: pointer;
    font-size: 16px;
}

/* Existing styles remain the same */

.btn {
    display: inline-block;
    background-color: #6200ea;
    color: #ffffff;
    border: none;
    border-radius: 15px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #3700b3;
}

.btn:active {
    background-color: #2900a2;
}

/* Ensure that the button is centered and styled */
#uploadControls {
    margin-top: 20px;
}


#progressContainer {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 10px;
    margin: 20px 0;
    display: none;
    /* Initially hidden */
}

#progressBar {
    height: 10px;
    background-color: #6200ea;
    width: 0;
    border-radius: 10px;
    transition: width 0.4s ease;
}

.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.273);
    color: #ffffff;
    border-radius: 5px;
    padding: 10px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: none;
    /* Initially hidden */
    z-index: 1000;
}

.notification.show {
    display: block;
}

.notification button {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
    margin-left: 10px;
}

a {
    color: #6200ea;
}