/* ===== СТИЛИ ДЛЯ ПЕЧАТИ ===== */

/* Скрываем все элементы интерфейса */
.header, .controls-panel, .panel-toggle,
.back-button, .map-overlay, .location-button,
.navigate-button, .context-menu, .modal-overlay,
.print-address-list {  /* на всякий случай скрываем список */
    display: none !important;
}

/* Сбрасываем отступы у корневых элементов */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: white;
}

/* Контейнер карты на всю страницу */
#map-container {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

/* Сама карта и все её дочерние элементы должны растягиваться */
#map,
#map > ymaps,
#map canvas {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
}