* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    margin: 0;
    height: 100%;    
    max-height: 100vh;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    background: #2d2969;
    margin: 0;
}
.map {
    width: 100%;
    height: calc(100vh - 40px);
    border: 4px solid #ffffff;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.container {
    width: 100%;
    height: 100%;
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}
pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    background-color: #f4f4f4;
    padding: 15px;
    border-radius: 5px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    overflow-wrap: break-word;
    max-width: 100%;
    word-break: break-word;
}

/* Remove border/outline from the close (X) button inside Google Maps InfoWindow */
.gm-ui-hover-effect {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}
.gm-ui-hover-effect:hover {
    background: none !important;
}


/* Mobile - max-width 768px */
@media (max-width: 768px) {
    /* Styles for mobile */
}

/* Tablet - max-width 1024px */
@media (max-width: 1024px) {
    /* Styles for tablet */
}

/* WP Mobile - max-width 782px */
@media (max-width: 782px) {
    /* Styles for WordPress mobile */
}

/* WP XS - max-width 600px */
@media (max-width: 600px) {
    /* Styles for WordPress extra small devices */
}

/* Small Mobile - max-width 450px */
@media (max-width: 450px) {
    /* Styles for small mobile devices */
}

/* Mobile Min - min-width 769px */
@media (min-width: 769px) {
    /* Styles for devices larger than mobile */
}

/* Tablet Min - min-width 1025px */
@media (min-width: 1025px) {
    /* Styles for devices larger than tablet */
}

/* Site - max-width 1440px */
@media (max-width: 1440px) {
    /* Styles for site max width */
}

/* Site Min - min-width 1440px */
@media (min-width: 1440px) {
    /* Styles for site min width */
}
