@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Playfair+Display:wght@700&display=swap');
@import "/framework.css";

/* Estilo global del blog */
body {
    background-color: #7f7f7f;
    color: #333333;
    font-family: 'Lato', sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 2rem auto;
    background-color: #ffe7d6;
    padding: 2rem 3rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

/* Encabezados */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid #000000;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #0056b3;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #cccccc;
}

/* Formularios */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    background-color: #ffffff;
}

button {
    background-color: #0056b3;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    margin-left: 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    transition: background-color 0.3s;
}

button:hover:not(:disabled) {
    background-color: #E65100;
}

button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* Resultado */
.resultado-box {
    margin-top: 1.5rem;
    border: 1px solid #cccccc;
    border-radius: 4px;
    background-color: #ffffff;
    padding: 1.5rem;
    max-height: 400px;
    overflow-y: auto;
}

pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    margin: 0;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
}
