html {background-image: linear-gradient(#1073b1,#0d0f37);background-size: 9000px 9000px;} /*extends background gradient past visible window*/

body {
    background-repeat: no-repeat; /* Prevent the background image from repeating */
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

/* assets/styles.css */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');

h4 {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 100 !important; /* Thin weight */
}
h3 {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 100 !important; /* Thin weight */
    font-size: 80 !important; /* Thin weight */
}
h5 {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 100 !important; /* Thin weight */
    font-size: 40 !important; /* Thin weight */
}

body {
    background: url('https://d2l7vcm2vanphr.cloudfront.net/aux_media/user_report_currents.png') no-repeat center center fixed;
    background-size: cover;
    background-repeat: no-repeat; /* Prevent the background image from repeating */
    background-attachment: local; /* This makes the background image scroll with the page */
    background-color: rgb(20, 104,164);
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: 50;
    text-align: center;
    margin: 0;
    padding: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 12;
    margin-bottom: auto;
    align-items: center;
    height: 100vh;
}

body, div {
    font-size: 16px !important;
}

.plotly {
    font-family: 'Roboto', sans-serif;
    font-weight: 100 !important; /* Thin weight */
}

.hover-image-container:hover {
    display: inline-block;
    visibility: visible;
    opacity: 0;
    transition: 2s;
    filter: invert(30%) sepia(100%) saturate(300%) hue-rotate(180deg) brightness(150%);  /* Change color using filters */
}

.hover-label:hover {
    display: inline-block;
}

.hover-image:hover {
    transform: scale(1.5);
    filter: none;

}

.responsive-row {   /*  applies mobile viewing improvements to glossary  */
    padding: 10px;
  /*  max-width: 768px;  */
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive .table {
    margin-bottom: 0;
    white-space: nowrap;
}

.responsive-text {
    font-size: 16px;  /* table text */
}

.print-box {
    background-color: white;
    color: black
}

.print-box .btn-close{
    --bs-btn-close-color: black;
    border-radius: 0.5rem;
    border-width: medium;
    border-color: black;
    background: black var(--bs-btn-close-bg) center/1em auto no-repeat;
}
.print-box .user-level-graphic-number{
    color: black;
}
.print-box .user-level-graphic-img{
    color: black;
    filter: grayscale(1) invert(1);
}

#modal-print-btn{
    float: left;
    top: 0;
    color: rgb(40, 66, 93);
    background: #eaf6fa;
}

.user-level-graphic{
    position: relative;
    display: inline-block;
}
.user-level-graphic-number{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    background-color: rgba(0, 0, 0, 0);  /*Optional: Add a semi-transparent background for better readability */
    border-radius: 50%;  /* Make background circular */
    padding: 5px;
}
.user-level-graphic-img{
    width: 200px
}
.glossary-item {
    margin-bottom: 15px; /* Row spacing */
    color: white;      /* Text color */
    width: 6;
}