/* General body styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Container for the form */
#form-container {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    max-width: 600px;
    margin: 20px;
    text-align: left;

}

/* Styling for h1 */
h1 {
    color: #00c3ff; /* Replace with your desired color */
    font-size: 2rem; /* Adjust size as needed */
    text-align: center;
    margin-bottom: 20px;
}


/* Style each question container */
.question-container {
    margin-bottom: 20px;
}

.question-container label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: #555;
}
/* Style for textareas */
.question-container textarea {
    width: 95%;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #f9f9f9;
    color: #333;
    transition: border 0.3s ease;
    resize: vertical; /* Allows vertical resizing only */
    min-height: 0px; /* Set minimum height */
}

.question-container textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.3);
}

/* Style for the dropdowns */
.question-container select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #f9f9f9;
    color: #333;
    transition: border 0.3s ease;
}

.question-container select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.3);
}

/* Submit button styling */
#submit-button {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background-color: #00c3ff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#submit-button:hover {
    background-color: #0056b3;
}

/* Result section styling */
#result {
    text-align: center;
    margin-top: 20px;
    font-size: 1.2rem;
    color: #444;
}

#result h2 {
    margin-top: 10px;
    font-size: 2em; /* Larger font size for the h2 */
    font-weight: bold;
    color: #00b7ff; /* Dark Cyan heading color */
}

#result h4 {
    font-size: 1.25em; /* Slightly smaller than h2 */
    font-weight: normal;
    color: #333333; /* Dark gray color for subheadings */
    margin-top: 10px;
}

#result p {
    font-size: 1em; /* Normal font size for paragraphs */
    font-weight: normal;
    color: #666666; /* Light gray color for paragraph text */
    margin-top: 10px;
}



#result ul {
    list-style-position: inside; /* Makes the list markers inside the container */
    padding-left: 0; /* Removes default left padding */
    text-align: left; /* Ensures the text is left-aligned */
    color: #000000; /* Dark Cyan heading color */
    padding-bottom: 20px; /* Adjust the value to increase or decrease the space */

}

#result li {
    margin-left: 0; /* Ensures the list items align with the container */
    padding-left: 0; /* Ensures there's no padding */
    color: #000000; /* Dark Cyan heading color */
    margin-bottom: 10px;


}



/* Music player container styling */
#music-container {
    text-align: center;
}

#music-container h3 {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 10px;
}

#music-player iframe {
    border: none;
    margin-top: 10px;
    width: 100%;
    max-width: 560px;
    height: 315px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 600px) {
    #form-container {
        padding: 15px;
    }

    #submit-button {
        font-size: 0.9rem;
        padding: 10px;
    }

    #music-container iframe {
        height: 250px;
    }
}

body {
    font-family: Arial, sans-serif;
    background: #f0f0f0;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

#music-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#music-container iframe {
    border: none;
    scroll-snap-align: start;
}

input[type="number"] {
    padding: 5px;
    font-size: 1rem;
    margin: 10px 0;
    width: 60px;
}

button {
    padding: 10px;
    font-size: 1rem;
    background-color: #00b7ff;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #008ecf;
}
