/* style.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.summary {
    margin-bottom: 30px;
}

.charts {
    display: flex; /* Use flexbox to arrange charts side by side */
    justify-content: space-between; /* Space between the charts */
    gap: 30px; /* Space between the charts */
    flex-wrap: wrap; /* Ensure the charts wrap on smaller screens */
}

.chart-container {
    flex: 1;
    min-width: 400px; /* Set a minimum width for the charts */
}

canvas {
    max-width: 100%;
    height: 300px; /* Fixed height for consistency */
}

h3 {
    margin-bottom: 10px;
}


.dashboard-buttons {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.dashboard-buttons .btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    text-align: center;
    background-color: #4e73df;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
    width: 200px; /* Ensure buttons have the same width */
}

.dashboard-buttons .btn:hover {
    background-color: #2e59d9;
}

.dashboard-buttons .btn:active {
    background-color: #1e44a1;
}
