/* css styles */

.navbar-brand img {
    max-height: 50px;
    height: auto;
}

/* Plot with background image */
.plot-with-bg {
    position: relative;
    width: 100%;
}

.plot-with-bg .bg-image {
    position: absolute;
    bottom: -35px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
}

.plot-with-bg .plotly {
    position: relative;
    z-index: 1;
}

/* Desktop/Mobile visibility */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }
}

/* Mobile hero section */
.mobile-hero {
    font-size: 1.3rem;
    text-align: center;
    padding: 1.5rem 1rem;
    color: #205162;
    line-height: 1.5;
}

.mobile-hero em {
    font-style: normal;
    color: #09CE7C;
    font-weight: 600;
}

.mobile-hero-image {
    width: 100%;
    height: auto;
}