#report-container {
    height: calc(0.61 * 61vw); /* 16:9 aspect ratio */
}

iframe {
    border: none;
}

@media only screen and (max-width: 574px) {
    #report-container {
        height: calc(0.61 * 100vw); /* 16:9 aspect ratio */
    }
}

.list-group-custom-height {
    max-height: 47vh;
}

.cursor-pointer {
    cursor: pointer !important
}

.floating-btn {
    position: fixed;
    top: 20px;
    right: 30px;
    z-index: 1050;
    background-color: #0078d4;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

    .floating-btn:hover {
        background-color: #005a9e;
    }

/* Info panel hidden by default */
.info-panel {
    position: fixed;
    top: 80px;
    right: -450px; /* Start off-screen */
    background-color: #fff;
    border-radius: 12px 0 0 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
    z-index: 1049;
    opacity: 0;
    transform: translateX(0);
    transition: all 0.4s ease;
}

    /* When shown */
    .info-panel.show {
        right: 30px; /* Slide into view */
        opacity: 1;
        transform: translateX(0);
    }
