/* Estilo global */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f8f8f8;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
}

header {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

main {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.magical-bg {
    background-color: #f8f8f8;
}

/* Título */
.magic-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    font-size: 36px;
    margin: 0;
    padding-bottom: 10px;
}

/* Introducción */
.magic-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
}

/* Contenedor */
.content-container {
    max-width: 600px;
    width: 100%;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Estilo del formulario */
.magic-form {
    display: flex;
    flex-direction: column;
}

.form-section {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

input[type="text"], select {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 10px;
}

/* Botones */
.magic-button {
    background-color: #007aff;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    width: 100%;
}

.magic-button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Contenedor de la historia */
.text-result {
    display: none; /* Ocultamos el contenedor inicialmente */
    background-color: #f0f0f5;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

/* Texto de la historia */
.magic-text {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    white-space: pre-line;
}

/* Responsivo para pantallas más pequeñas */
@media (max-width: 768px) {
    .magic-title {
        font-size: 28px;
    }

    .magic-button {
        font-size: 16px;
    }
}
