/* ===== Дашборд 4: Запуск заказов ===== */

.launch-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 8px;
    height: calc(100vh - 110px);
}

.card-launch-chart {
    grid-column: 1;
    min-height: 0;
    padding: 8px 10px;
}

.card-launch-donut {
    grid-column: 2;
    min-height: 0;
    padding: 8px 10px;
}

.chart-legend-inline {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 10px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.legend-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    margin-right: 3px;
}

.donut-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    height: 100%;
}

.donut-wrapper canvas {
    max-width: 350px;
    max-height: 350px;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1/1;
}

.donut-legend {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.donut-legend .legend-item {
    font-size: clamp(10px, 0.8vw, 12px);
}

.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 - 110px);
    }

    .card-launch-chart {
        grid-row: 1;
        min-height: 180px;
    }

    .card-launch-donut {
        grid-row: 2;
        min-height: 150px;
    }
}

@media (max-width: 768px) {
    .launch-grid {
        height: auto;
        min-height: auto;
    }

    .card-launch-chart {
        min-height: 150px;
    }

    .card-launch-donut {
        min-height: 130px;
    }

    .donut-wrapper canvas {
        max-width: 310px;
        max-height: 310px;
    }
}