body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(135deg, #f06, #ff9a9e);
}

.container {
    background: linear-gradient(135deg, #f06, #ff9a9e);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 100%;
    margin: 20px;
    text-align: center;
    color: white;
    box-sizing: border-box; /* Adiciona isso para garantir que o padding seja incluído no tamanho total */
}

.app-logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

h1, h2 {
    color: white;
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    color: white;
    margin-bottom: 5px;
}

input[type="text"], textarea {
    width: calc(100% - 22px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background-color: white;
    color: #333;
}

textarea {
    resize: none;
}

.radio-group {
    display: flex;
    flex-direction: column;
}

.radio-group label {
    display: flex;
    align-items: center;
    margin: 5px 0;
    color: white;
}

.radio-group input[type="radio"] {
    margin-right: 10px;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #f06;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #d00558;
}

.loading {
    display: none;
     
}

.loading-content {
    background-color: rgb(185, 0, 176);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

#resultContainer {
    text-align: center;
}

#resultContainer p {
    font-size: 18px;
    color: white;
}

#videoContainer {
    margin: 20px 0;
}

#youtubeVideo {
    width: 100%;
    max-width: 560px;
    height: 315px;
    border: none;
}

#suggestionsContainer {
    margin: 20px 0;
    text-align: left;
}

#suggestionsList {
    list-style-type: disc;
    padding-left: 20px;
    color: white;
}
