/* ═══════════════════════════════════════
   Modern scrollbar — clean, thin, subtle
   ═══════════════════════════════════════ */
.opcommScroller {
  scroll-behavior: smooth;
  overflow: auto;
}

  .opcommScroller::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }

  .opcommScroller::-webkit-scrollbar-track {
    background: transparent;
  }

  .opcommScroller::-webkit-scrollbar-thumb {
    background: #c0c5ce;
    border-radius: 4px;
  }

  .opcommScroller::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
  }

  .opcommScroller::-webkit-scrollbar-corner {
    background: transparent;
  }

.opcommTextAreaScroller {
  scroll-behavior: smooth;
  overflow: auto;
  border-radius: 0 13px 13px 0;
}

  .opcommTextAreaScroller::-webkit-scrollbar {
    width: 6px;
  }

  .opcommTextAreaScroller::-webkit-scrollbar-track {
    background: transparent;
  }

  .opcommTextAreaScroller::-webkit-scrollbar-thumb {
    background: #9ca3af;
    border-radius: 3px;
  }

  .opcommTextAreaScroller::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
  }
