#right-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 300px;
    background-color: #f0f0f0;
    overflow-y: auto;
    padding: 10px;
    z-index: 999999;
    transform: translateX(300px);
    transition: transform 0.3s ease-in-out;
}

#right-panel.open {
    transform: translateX(0);
}

.toggle-panel-button {
    position: fixed;
    bottom: 20px;
    /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    background-color: #007BFF;
    color: #ffffff;
    padding: 10px;
    cursor: pointer;
    border: none;
    border-radius: 5px 0 0 5px;
    font-weight: bold;
    z-index: 99999999;
}

.header-panel,
.body-panel,
.footer-panel {
    margin-bottom: 15px;
    margin-top: 15px;
}

.header-panel h6,
.body-panel h6,
.footer-panel h6 {
    border-bottom: 1px solid #000;
}

.image-container {
    position: relative;
    margin-bottom: 15px;
}

.image-container img {
    max-width: 100%;
    height: auto;
    display: block;
}

.rin-number-overlay {
    background-color: #037EFE !important;
    padding: 5px;
    font-size: 12px;
    color: #ffffff;
}