#rpt-floating-btn {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #0073aa;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    z-index: 9999;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

#rpt-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
}

/* Modal kotak, besar, di tengah */
.rpt-modal-content {
    background-color: #fff;
    width: 80%;
    height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    overflow-y: auto;
    border-radius: 0;
    box-sizing: border-box;
}

#rpt-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

#rpt-id-list .rpt-item {
    padding: 10px 0;
    border-bottom: 1px solid #333;
    font-size: 16px;
}

#rpt-id-list .rpt-item a:hover {
    text-decoration: underline;
}
