/* Reset some styles for printing */
body {
    margin: 0;
    padding: 0;
}

/* Hide unnecessary elements */
.col-auto {
    display: none !important;
}

.ms-auto {
    margin-left: revert;
    text-align: center;
}

.col-md-6 {
    flex: unset;
    width: 100%;
}

button {
    display: none;
}

#map {
    width: 100% !important;
    height: 100% !important;
}

/* A4 - 21cm x 29.7cm */
@media print and (min-height: 27.7cm) and (max-height: 31.7cm) {
    #map {
        zoom: 100% !important;
    }
  }
  
  /* A3 - 29.7cm x 42cm */  
  @media print and (min-height: 40cm) and (max-height: 44cm) {
    #map {
        zoom: 160% !important;
    }
    h4 {
        font-size: 35px !important;
    }
  }
  
  /* A2 - 42cm x 59.4cm */
  @media print and (min-height: 57.4cm) and (max-height: 61.4cm) {
    #map {
        zoom: 250% !important;
    }
    h4 {
        font-size: 40px !important;
    }
  }
  
  /* A1 - 59.4cm x 84.1cm */
  @media print and (min-height: 82.1cm) and (max-height: 86.1cm) {
    #map { 
        zoom: 350% !important;
    }
    h4 {
        font-size: 60px !important;
    }
  }
  
  /* A0 - 84.1cm x 118.9cm */
  @media print and (min-height: 110cm) {
    #map {
        zoom: 500% !important;
    }
    h4 {
        font-size: 80px !important;
    }
  }