/*
    v2 - 7/24
*/

#banner {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4px;
}

#banner #nav,
#banner #item_type {
    flex: 1 1 auto;
}

#banner #print-btn {
    flex: 0 0 auto;
    margin-left: auto;
}

#banner #print-btn button {
    font-family: 'inter', sans-serif;
    font-size: 0.85em;
    cursor: pointer;
}

body {
    font-family: 'inter';
    font-weight: 300;
}


p {
    line-height:150%;
}

ul {
    line-height:180%;
}


h1 {
    font-weight: 800;
    font-size: 200%;
}

h2 {
    font-weight: 600;
    font-size: 140%;
}

h3 {
    font-weight: 500;
    font-size: 120%;
}

h4,h5,h6 {
    font-weight: 400;
    font-size: 120%;
}

a.navlink {
    font-size: 90%;
    line-height:200%;
    font-weight: 200;
    text-decoration: none;
    color: inherit;
    padding: 10px;
    border-radius: 10px;
}

a.navlink:hover {
    background-color: #e6e6e6;
}


table {
	
    max-width:100%;
    overflow-x: auto;

	border-collapse: collapse;
	
	border-top:0px; 
	border-bottom:0px;
	
	vertical-align:top;
}

th {
	border-bottom: 1px solid #CCC;
	padding: 5px 0.5em;
	text-align: left;
	vertical-align:top;
}



td {
	border-width: 1px;
/*	border-bottom: 1px solid #CCC; */
	padding: 5px 0.5em;
	vertical-align:top;
}

fieldset {
    min-width: 0;
}

.viz-scroll {
    max-width: 100%;
    overflow-x: auto;

    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 6px;
    background: #fafafa;
}

.viz-scroll svg {
    display: block;
}

fieldset pre,
fieldset code {
  max-width: 100%;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
}
@media print {
    #nav,
    #item_type,
    #controls,
    #print-btn {
        display: none !important;
    }

    .viz-scroll {
        overflow: visible !important;
        max-width: 100% !important;
        border: none !important;
        background: none !important;
        padding: 0 !important;
    }

    .viz-scroll svg {
        max-width: 100% !important;
        height: auto !important;
    }
}
