/* Styles for ResultCardListComponent and ResultKpiComponent */

.card-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.result-card {
    background-color: #2C2C2E;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    color: #e0e0e0;
}

.kpi-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.kpi-item {
    background-color: #2C2C2E;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    color: #e0e0e0;
    min-width: 150px;
    text-align: center;
}

.chart-wrapper {
    width: 100%;
    height: 300px;
    margin-top: 20px;
}

.chart-wrapper canvas {
    width: 100% !important;
    height: 100% !important;
}
