 /* Sakura is quite narrow by default. 
           For GIS maps, we want a bit more width. */
        /* body {
            max-width: 900px; 
        } */

        .arcgis-embed {
            margin: 2rem 0;
            border: 1px solid #eee;
            border-radius: 4px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        /* Keep the sidebar simple for Sakura */
        /* .sidebar {
            font-size: 0.9em;
            border-bottom: 1px solid #eee;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
        }

        .sidebar ul {
            list-style-type: none;
            padding: 0;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        } */

        @media print {
    .no-print, .sidebar, nav {
        display: none !important;
    }
    
    body {
        max-width: 100%;
        padding: 0;
    }

    .arcgis-embed {
        border: none;
        box-shadow: none;
    }
}

/* Prevent Bulma from styling Prism code numbers */
code[class*="language-"] .number {
  align-items: flex-start;
  background-color: transparent;
  border-radius: 0;
  display: inline;
  font-size: inherit;
  height: inherit;
  margin-right: 0;
  min-width: inherit;
  padding: 0;
  color: inherit; /* Or your Prism theme's number color */
}