body {
    background-color: #000000;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

h1 {
width: 100%;
text-align: center;
    color: #0066cc;
}
/* Add any additional styles needed for the new content */

.dropzone {
    width: 400px;
    height: 200px;
    border: 2px dashed #0000FF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 100px auto;
    position: relative;
    color: #0000FF;
    cursor: pointer;
}

.dropzone.highlight {
    background-color: #1e1e1e;
    color: #0000FF;
}

.dropzone i {
    font-size: 50px;
}

.dropzone p {
    margin-top: 10px;
    font-size: 18px;
}

#progress {
    text-align: center;
    margin-top: 50px;
    color: #ffffff;
}

#progress p {
    font-size: 18px;
}

.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #0066cc;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    margin: 20px auto;
    animation: spin 2s linear infinite;
}

.hidden {
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.image-container {
    margin: 10px;
}

.image-container img {
    max-width: 200px;
    height: auto;
    border: 2px solid #0066cc;
    border-radius: 5px;
}