.snr-container {
    height: 660px;              /* adjust height as needed */
    overflow-y: auto;           /* manual scroll */
    overflow-x: hidden;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Smooth scroll */
.snr-container {
    scroll-behavior: smooth;
}

/* Nice scrollbar */
.snr-container::-webkit-scrollbar {
    width: 6px;
}
.snr-container::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 4px;
}
.snr-container::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.snr-item {
    padding: 12px 6px;
    border-bottom: 1px dashed #ddd;
}

.snr-item:last-child {
    border-bottom: none;
}

.snr-item strong {
    display: block;
    font-size: 16px;
    color: #111;
}

.snr-content,
.snr-item div {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
