/* public/css/style.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
}

h1, h2, h3 {
    color: #0056b3;
    text-align: center;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

input[type="file"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
}

button[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

.message {
    background-color: #ffe0b2;
    color: #e65100;
    border: 1px solid #ff9800;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.results {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #d4edda;
    border-radius: 5px;
    background-color: #d4edda; /* Light green for success */
    color: #155724;
}

.results h2 {
    color: #155724;
    text-align: left;
    margin-bottom: 10px;
}

.results .description {
    font-style: italic;
    margin-bottom: 15px;
    color: #388e3c;
}

.results h3 {
    color: #155724;
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: left;
    font-size: 1.1em;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background-color: #fff;
}

table, th, td {
    border: 1px solid #a2d2a4;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #c8e6c9;
    font-weight: bold;
    color: #155724;
}

tr:nth-child(even) {
    background-color: #e0ffe0;
}
/* public/css/style.css */
/* ... (estilos existentes) ... */

.results.logmeal-results {
    background-color: #e0f2f7; /* Light blue for LogMeal results */
    color: #01579b;
    border-color: #b3e5fc;
}

.results.fatsecret-results {
    background-color: #d4edda; /* Light green for FatSecret results */
    color: #155724;
    border-color: #c3e6cb;
    margin-top: 20px; /* Separación entre ambos bloques de resultados */
}

/* ... (resto de tus estilos) ... */