/* public/app/css/charts-styles.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.chart-container {
    position: relative;
    height: 80vh; /* Aumentado para ocupar más pantalla */
    width: 100%;
}

.alerts-log-container {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.alerts-log-container h2 {
    margin-top: 0;
    color: #555;
}

#alertsLogList {
    list-style: none;
    padding: 0;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #eee;
    border-radius: 4px;
}

#alertsLogList li {
    padding: 8px 10px;
    border-bottom: 1px solid #eee;
    font-size: 0.9em;
}

#alertsLogList li:last-child {
    border-bottom: none;
}

footer {
    text-align: center;
    padding: 1rem;
    margin-top: 20px;
    color: #777;
    font-size: 0.8em;
}
