/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to right, #6a11cb, #2575fc);
}

/* Container styles */
.container {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    text-align: center;
}

/* Heading styles */
.container h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

/* Textarea styles */
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 1rem;
    resize: none;
    transition: border-color 0.3s;
}

textarea:focus {
    border-color: #6a11cb;
}

/* Select and input styles */
select, input[type="text"] {
    width: calc(100% - 22px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

select:focus, input[type="text"]:focus {
    border-color: #6a11cb;
}

/* Label styles */
label {
    display: block;
    margin-bottom: 5px;
    font-size: 1rem;
    color: #555;
    text-align: left;
}

/* Button styles */
button {
    padding: 15px 30px;
    background: #6a11cb;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #2575fc;
}

/* Audio player styles */
audio {
    width: 100%;
    margin-top: 20px;
}

/* Additional styles for input containers */
.input-container {
    text-align: left;
    margin-bottom: 15px;
}
footer {
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 17%;
    width: 100%;    
    /* background-color: #f1f1f1; */
}