/* Estilos generales para la aplicación Brand Audit AI */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f7f9f8;
    color: #111;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.title {
    font-size: 32px;
    margin-bottom: 4px;
    font-weight: 700;
    color: #00B140;
}

.subtitle {
    font-size: 16px;
    margin-bottom: 20px;
    color: #444;
}

.audit-form label {
    display: block;
    margin-top: 16px;
    font-weight: 600;
    color: #333;
}

.audit-form input[type="text"],
.audit-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    margin-top: 6px;
    box-sizing: border-box;
}

/* Select styling */
.audit-form select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    margin-top: 6px;
    box-sizing: border-box;
    background: #fff;
    color: #333;
}
.audit-form select:invalid {
    color: #999;
}

.audit-form textarea {
    resize: vertical;
    font-family: inherit;
}

button[type="submit"] {
    display: inline-block;
    margin-top: 20px;
    background: #00B140;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease;
}

button[type="submit"]:hover:not(:disabled) {
    background: #009034;
}

button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#status {
    margin-top: 20px;
    font-style: italic;
    color: #666;
}

#result a {
    color: #00B140;
    text-decoration: underline;
}

/* Mensajes de progreso y resultados */
#result {
    margin-top: 20px;
    font-weight: 600;
}