.dashboard {
    display: grid;
    gap: 20px;
    padding: 20px;
}

.dashboard.col-1 {
    grid-template-columns: 1fr;
}

.dashboard.col-2 {
    grid-template-columns: repeat(2, 1fr);
}

.dashboard.col-3 {
    grid-template-columns: repeat(3, 1fr);
}

.chart-container {
    background: #f9f9f9;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
}

.canvas-dashboard {
    /*border: 1px solid #ccc;*/
    width: 100% !important;
    height: 300px !important;
    border-radius: 10px;
}

/* Popup styles */
.popup {
    display: none; /* Initially hidden */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding-top: 60px;
}

.popup-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    /*height: 480px;*/
    max-width: 100%;
    border-radius: 15px;
}

.popup-content h3 {
    margin-top: 0;
}

button {
    margin-top: 0px;
}
