.optimo-dashboard {
    padding: 0;
    background: transparent;
    max-width: none;
}

.optimo-dashboard .optimo-card {
    transition: 0.2s ease;
}

.optimo-dashboard .optimo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

.optimo-dashboard .optimo-card:nth-child(1)::before,
.optimo-dashboard .optimo-card:nth-child(3)::before {
    background: #00609f;
}

.optimo-dashboard .optimo-card:nth-child(2)::before,
.optimo-dashboard .optimo-card:nth-child(4)::before {
    background: #00bf63;
}

.optimo-dashboard .optimo-card:nth-child(5)::before {
    background: #f59e0b;
}

.optimo-dashboard .optimo-card:nth-child(6)::before {
    background: #dc2626;
}

.dashboard-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 24px 0;
}

.dashboard-actions .optimo-btn {
    width: auto;
    min-width: 145px;
    height: 46px;
    padding: 11px 18px;
    white-space: nowrap;
}

.dashboard-chart-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.dashboard-chart-card {
    min-height: 360px;
    position: relative;
}

.dashboard-chart-card h2 {
    font-size: 22px;
    margin-bottom: 18px;
}

.dashboard-chart-card canvas {
    width: 100% !important;
    height: 260px !important;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.dashboard-mini-link {
    display: inline-flex;
    margin-top: 14px;
    font-weight: 800;
    text-decoration: none;
    color: var(--optimo-primary, #00609f);
}

.dashboard-mini-link:hover {
    color: var(--optimo-primary-dark, #004d80);
}

@media (max-width: 1100px) {
    .dashboard-chart-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-chart-card {
        min-height: 330px;
    }

    .dashboard-chart-card canvas {
        height: 240px !important;
    }
}

@media (max-width: 900px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .dashboard-actions .optimo-btn {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 520px) {
    .dashboard-actions {
        grid-template-columns: 1fr;
        margin: 18px 0;
    }

    .dashboard-actions .optimo-btn {
        height: 42px;
        min-height: 42px;
        padding: 9px 12px;
        font-size: 13px;
    }

    .dashboard-chart-card {
        min-height: 300px;
    }

    .dashboard-chart-card canvas {
        height: 220px !important;
    }
}