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

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

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

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

.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 #6a0dad;
    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 #6a0dad;
    border-radius: 5px;
}

/* Styles for the sound effect generator */
.sound-effect-generator {
    width: 80%;
    margin: 20px auto;
    text-align: center;
}

.sound-effect-generator textarea {
    width: 100%;
    height: 100px;
    background-color: #1e1e1e;
    color: #ffffff;
    border: 1px solid #6a0dad;
    border-radius: 5px;
    padding: 10px;
    resize: none;
}

.slider-container {
    margin: 20px 0;
}

.slider-container label {
    display: block;
    color: #6a0dad;
    margin-bottom: 5px;
}

.slider-container input[type="range"] {
    width: 100%;
}

#generateButton {
    background-color: #6a0dad;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

#generateButton:hover {
    background-color: #540c9a;
}

#audioContainer {
    width: 80%;
    margin: 20px auto;
    text-align: center;
}

#audioPlayer {
    width: 100%;
    background-color: #1e1e1e;
}

.audio-controls {
    margin-top: 10px;
}

.audio-controls button {
    background: none;
    border: none;
    color: #6a0dad;
    font-size: 24px;
    cursor: pointer;
    margin: 0 10px;
}

.audio-controls button:hover {
    color: #ffffff;
}
