/* #footer-digital-stamp {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    text-align: center;
    padding: 10px;
    border-top: 1px solid #ccc;
} */

.footer-collapsible {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ccc;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    font-size: 14px;
    z-index: 1000;
}

.footer-header {
    background: #006923;
    color: #fff;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-body {
    display: none; /* collapsed by default */
    padding: 10px;
    max-height: 400px;
    overflow-y: auto;
}

.footer-body.show {
    display: block;
}
