/* ===== Дашборд 4: Запуск заказов ===== */

.launch-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
    height: calc(100vh - 120px);
}

.card-launch-chart {
    grid-column: 1;
    min-height: 0;
    padding: 12px 14px;
}

.card-launch-donut {
    grid-column: 2;
    min-height: 0;
    padding: 12px 14px;
}

.chart-legend-inline {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.legend-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 3px;
    margin-right: 4px;
}

.donut-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    height: 100%;
}

.donut-wrapper canvas {
    max-width: 180px;
    max-height: 180px;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1/1;
}

.donut-legend {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.donut-legend .legend-item {
    font-size: clamp(11px, 0.9vw, 13px);
}

.dot-darkgreen {
    background: var(--accent-green-dark);
}

.dot-gray {
    background: var(--text-muted);
}

/* Адаптив */
@media (max-width: 992px) {
    .launch-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        height: auto;
        min-height: calc(100vh - 120px);
    }

    .card-launch-chart {
        grid-row: 1;
        min-height: 250px;
    }

    .card-launch-donut {
        grid-row: 2;
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .launch-grid {
        height: auto;
        min-height: auto;
    }

    .card-launch-chart {
        min-height: 200px;
    }

    .card-launch-donut {
        min-height: 180px;
    }

    .donut-wrapper canvas {
        max-width: 140px;
        max-height: 140px;
    }
}