.paper-box {
    position: relative;
    padding: 18px 20px;
    border-radius: 14px;
    background: #fbf8ee;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 2px 0 rgba(0, 0, 0, 0.03);

    max-height: 900px;
    overflow-y: scroll;
    
}

.paper-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    pointer-events: none;
    background-image: radial-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px);
    background-size: 14px 14px;
    opacity: 0.25;
}

.paper-box::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    height: 18px;
    border-radius: 12px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
    opacity: 0.6;
}