/* ==========================================================================
   BAGAN STRUKTUR ORGANISASI MODERN - PENGADILAN NEGERI JAKARTA SELATAN
   Desain Modern, Elegan, dan Responsif Berdasarkan PERMA No. 07 Tahun 2015
   ========================================================================== */

/* ---------- Modern Toolbar & View Toggle ---------- */
.org-toolbar-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 12px 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.05);
}

.org-toolbar-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.org-view-toggle {
  display: inline-flex;
  background: #f1f5f9;
  border-radius: 10px;
  padding: 4px;
  gap: 4px;
}

.org-toggle-btn {
  border: none;
  background: transparent;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.org-toggle-btn:hover {
  color: #0f172a;
}

.org-toggle-btn.active {
  background: #ffffff;
  color: #0f766e;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Branch Filter Pills */
.org-filter-group {
  display: inline-flex;
  gap: 6px;
}

.org-filter-pill {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.org-filter-pill:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
  color: #0f172a;
}

.org-filter-pill.active {
  background: #0f766e;
  border-color: #0f766e;
  color: #ffffff;
}

/* Zoom Controls */
.org-zoom-controls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.org-ctrl-btn {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  transition: all 0.15s ease;
}

.org-ctrl-btn:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  color: #0f172a;
  transform: translateY(-1px);
}

.org-zoom-level {
  font-size: 12px;
  font-weight: 700;
  min-width: 48px;
  text-align: center;
  color: #475569;
}

/* Mobile Scroll Hint */
.org-scroll-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: #475569;
  margin-bottom: 12px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 9px 14px;
}

@media (max-width: 1120px) {
  .org-scroll-hint {
    display: flex;
  }
}

/* ---------- Canvas Viewport & Container ---------- */
.org-viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 35px -5px rgba(0, 0, 0, 0.08), 0 0 0 1px #e2e8f0;
  background: #f8fafc;
  position: relative;
  touch-action: pan-x;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.org-viewport::-webkit-scrollbar {
  height: 8px;
}

.org-viewport::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.org-viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.org-viewport:fullscreen {
  border-radius: 0;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
}

/* Modern Blueprint / Grid Canvas */
.org-canvas {
  width: 1080px;
  min-width: 1080px;
  margin: 0 auto;
  padding: 32px 24px 38px 24px;
  position: relative;
  background-color: #f8fafc;
  background-image: radial-gradient(#cbd5e1 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  color: #0f172a;
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transform-origin: top center;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}

/* Header inside Modern Bagan */
.org-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.org-header-logo {
  flex-shrink: 0;
  width: 68px;
  display: flex;
  align-items: center;
}

.org-header-logo img {
  width: 58px;
  height: auto;
}

.org-header-title {
  text-align: center;
  flex-grow: 1;
}

.org-header-badge {
  display: inline-block;
  background: #f1f5f9;
  color: #0f766e;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.org-header-title h1 {
  font-size: 20px !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px;
  margin: 0 !important;
  border: none !important;
  border-left: none !important;
  padding: 0 !important;
  color: #0f172a !important;
}

.org-header-title h2 {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px;
  margin: 3px 0 0 0 !important;
  border: none !important;
  border-left: none !important;
  padding: 0 !important;
  color: #475569 !important;
}

.org-header-legal {
  flex-shrink: 0;
  text-align: right;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.45;
  color: #64748b;
  padding-left: 12px;
  border-left: 1px solid #e2e8f0;
}

.org-header-legal-title {
  font-weight: 700;
  color: #0f172a;
}

/* ---------- Ultra-Modern Node Cards ---------- */
.org-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.05), 0 2px 6px -2px rgba(0, 0, 0, 0.03);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  box-sizing: border-box;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.org-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -4px rgba(0, 0, 0, 0.1), 0 4px 12px -2px rgba(0, 0, 0, 0.05);
  border-color: #cbd5e1;
}

/* Card Accent Stripe on Left/Top */
.org-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 12px 12px 0 0;
  background: #94a3b8;
}

/* Category Color Accents */
.card-theme-pimpinan::after {
  background: linear-gradient(90deg, #0f766e, #059669);
}
.card-theme-pimpinan {
  border-top: 1px solid transparent;
}

.card-theme-kepaniteraan::after {
  background: linear-gradient(90deg, #0284c7, #2563eb);
}

.card-theme-kesekretariatan::after {
  background: linear-gradient(90deg, #059669, #10b981);
}

.card-theme-hakim::after {
  background: linear-gradient(90deg, #7c3aed, #6366f1);
}

/* Avatar Frame & Minimalist White Dummy Photo */
.org-avatar-wrap {
  width: 44px;
  height: 56px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
  position: relative;
}

/* Dummy Photo - Clean White with elegant subtle avatar silhouette */
.org-photo-dummy {
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.org-photo-dummy svg {
  width: 26px;
  height: 26px;
  color: #cbd5e1;
}

.org-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card Content & Typography */
.org-card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.org-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 7px;
  border-radius: 6px;
  margin-bottom: 4px;
}

.badge-pimpinan {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.badge-kepaniteraan {
  background: #f0f9ff;
  color: #0369a1;
  border: 1px solid #bae6fd;
}

.badge-kesekretariatan {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.badge-hakim {
  background: #f5f3ff;
  color: #5b21b6;
  border: 1px solid #ddd6fe;
}

.org-card-name {
  font-size: 11.5px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  letter-spacing: 0.1px;
}

.org-card-subrole {
  font-size: 9px;
  color: #64748b;
  font-weight: 600;
  margin-top: 2px;
  line-height: 1.25;
}

/* Hakim Card (Compact & Modern) */
.org-card-hakim {
  min-width: 140px;
  height: 60px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ffffff;
}

.org-card-hakim .org-card-role-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #4338ca;
}

.org-card-hakim .org-card-role-desc {
  font-size: 9px;
  color: #64748b;
  font-weight: 600;
  margin-top: 2px;
}

/* Modern Kelompok Jabatan Fungsional Cards */
.org-card-fungsional {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.05);
  padding: 10px 14px;
  text-align: left;
  box-sizing: border-box;
  display: block;
  position: relative;
  transition: all 0.2s ease;
}

.org-card-fungsional:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.08);
}

.org-fungsional-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.org-fungsional-kepaniteraan .org-fungsional-header {
  color: #0369a1;
}

.org-fungsional-kesekretariatan .org-fungsional-header {
  color: #047857;
}

.org-fungsional-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.org-fungsional-list li {
  font-size: 9.5px;
  font-weight: 700;
  color: #334155;
  line-height: 1.35;
  display: flex;
  align-items: center;
  gap: 5px;
}

.org-fungsional-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #94a3b8;
  flex-shrink: 0;
}

/* Specific Card Widths tailored for 1080px canvas */
.card-ketua {
  width: 255px;
}

.card-wakil {
  width: 255px;
}

.card-panitera {
  width: 230px;
}

.card-sekretaris {
  width: 230px;
}

.card-kabag {
  width: 230px;
}

.card-panmud {
  width: 154px;
  padding: 6px 8px;
  gap: 6px;
}

.card-panmud .org-avatar-wrap {
  width: 36px;
  height: 46px;
}

.card-panmud .org-card-name {
  font-size: 9px;
}

.card-subbag {
  width: 154px;
  padding: 6px 8px;
  gap: 6px;
}

.card-subbag .org-avatar-wrap {
  width: 36px;
  height: 46px;
}

.card-subbag .org-card-name {
  font-size: 9px;
}

.card-fungsional-left {
  width: 200px;
}

.card-fungsional-right {
  width: 215px;
}

/* ---------- Tree Structure & Connector Lines (Modern Slate) ---------- */
.org-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Tier 1: Ketua */
.org-tier-ketua {
  display: flex;
  justify-content: center;
  position: relative;
}

/* Stem between Ketua & Wakil Ketua */
.org-stem-ketua-wakil {
  width: 30px;
  height: 36px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.org-stem-arrows {
  display: flex;
  gap: 12px;
  align-items: center;
}

.org-stem-arrow-dashed {
  height: 30px;
  border-left: 2px dashed #94a3b8;
  position: relative;
}

.org-stem-arrow-dashed::after {
  content: '▼';
  position: absolute;
  bottom: -7px;
  left: -4.5px;
  font-size: 7px;
  color: #94a3b8;
}

.org-stem-arrow-solid {
  height: 30px;
  border-left: 2px solid #0f766e;
  position: relative;
}

.org-stem-arrow-solid::after {
  content: '▼';
  position: absolute;
  bottom: -7px;
  left: -4.5px;
  font-size: 7px;
  color: #0f766e;
}

/* Tier 2: Row containing Hakim & Wakil Ketua */
.org-tier-pimpinan {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  width: 100%;
}

.org-wakil-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hakim placed to the left with dashed coordinate line */
.org-hakim-wrapper {
  position: absolute;
  right: calc(100% + 40px);
  display: flex;
  align-items: center;
}

.org-coord-hakim {
  position: absolute;
  left: 100%;
  width: 40px;
  height: 2px;
  border-top: 2px dashed #6366f1;
  display: flex;
  align-items: center;
}

.org-coord-hakim::before {
  content: '◀';
  position: absolute;
  left: -2px;
  top: -6px;
  font-size: 8px;
  color: #6366f1;
}

/* Vertical line down from Wakil Ketua to Main Distribution Bar */
.org-stem-wakil-down {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 30px;
  background: #0f766e;
}

/* Tier 3: Main Split (Kepaniteraan Left, Kesekretariatan Right) */
.org-tier-split {
  display: grid;
  grid-template-columns: 490px 490px;
  column-gap: 52px;
  justify-content: center;
  width: 100%;
  position: relative;
}

/* Horizontal Responsibility Line spanning across Panitera & Sekretaris */
.org-main-bus-line {
  position: absolute;
  top: -30px;
  left: 245px;
  right: 245px;
  height: 2px;
  background: #94a3b8;
}

/* Center connector from stem down to horizontal bus */
.org-main-bus-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0f766e;
  margin-top: -3px;
}

/* Downward vertical drops from the main bus to Panitera and Sekretaris */
.org-drop-left {
  position: absolute;
  top: -30px;
  left: 245px;
  width: 2px;
  height: 30px;
  background: #0284c7;
}

.org-drop-right {
  position: absolute;
  top: -30px;
  right: 245px;
  width: 2px;
  height: 30px;
  background: #059669;
}

/* Coordination Line (Dashed) between Panitera & Central Axis */
.org-coord-kepaniteraan-bus {
  position: absolute;
  top: -15px;
  left: 245px;
  right: 50%;
  height: 2px;
  border-top: 2px dashed #94a3b8;
}

/* ---------- Column Left: Kepaniteraan ---------- */
.org-col-kepaniteraan {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Vertical line down from Panitera */
.org-stem-panitera-down {
  width: 2px;
  height: 30px;
  background: #0284c7;
  margin: 0 auto;
}

/* Panitera Muda Group */
.org-panmud-group {
  position: relative;
  width: 100%;
}

/* Horizontal distribution bar for 3 Panitera Muda */
.org-panmud-bus-line {
  position: absolute;
  top: 0;
  left: 77px;
  right: 77px;
  height: 2px;
  background: #0284c7;
}

.org-panmud-grid {
  display: grid;
  grid-template-columns: repeat(3, 154px);
  column-gap: 14px;
  justify-content: center;
  position: relative;
  padding-top: 20px;
}

.org-panmud-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Vertical drop to each Panitera Muda card */
.org-panmud-item::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background: #0284c7;
}

/* Fungsional Kepaniteraan below Panitera Muda */
.org-fungsional-kepaniteraan-wrap {
  margin-top: 24px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  position: relative;
}

/* Connection line to Fungsional Kepaniteraan */
.org-fungsional-kepaniteraan-wrap::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 77px;
  width: 2px;
  height: 24px;
  background: #0284c7;
}

/* ---------- Column Right: Kesekretariatan ---------- */
.org-col-kesekretariatan {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Vertical line down from Sekretaris to Kabag Umum */
.org-stem-sekretaris-kabag {
  width: 2px;
  height: 26px;
  background: #059669;
  margin: 0 auto;
}

/* Vertical line down from Kabag Umum to Sub Bagian bus */
.org-stem-kabag-down {
  width: 2px;
  height: 26px;
  background: #059669;
  margin: 0 auto;
}

/* Sub Bagian Group */
.org-subbag-group {
  position: relative;
  width: 100%;
}

/* Horizontal distribution bar for 3 Sub Bagian */
.org-subbag-bus-line {
  position: absolute;
  top: 0;
  left: 77px;
  right: 77px;
  height: 2px;
  background: #059669;
}

.org-subbag-grid {
  display: grid;
  grid-template-columns: repeat(3, 154px);
  column-gap: 14px;
  justify-content: center;
  position: relative;
  padding-top: 20px;
}

.org-subbag-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Vertical drop to each Sub Bagian card */
.org-subbag-item::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background: #059669;
}

/* Fungsional Kesekretariatan below Sub Bagian */
.org-fungsional-kesekretariatan-wrap {
  margin-top: 24px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

/* Connection line to Fungsional Kesekretariatan */
.org-fungsional-kesekretariatan-wrap::before {
  content: '';
  position: absolute;
  top: -24px;
  right: 77px;
  width: 2px;
  height: 24px;
  background: #059669;
}

/* Branch Highlight Interaction */
.org-tree.highlight-pimpinan .org-col-kepaniteraan,
.org-tree.highlight-pimpinan .org-col-kesekretariatan {
  opacity: 0.25;
  transition: opacity 0.3s ease;
}

.org-tree.highlight-kepaniteraan .org-tier-ketua,
.org-tree.highlight-kepaniteraan .org-tier-pimpinan,
.org-tree.highlight-kepaniteraan .org-col-kesekretariatan {
  opacity: 0.25;
  transition: opacity 0.3s ease;
}

.org-tree.highlight-kesekretariatan .org-tier-ketua,
.org-tree.highlight-kesekretariatan .org-tier-pimpinan,
.org-tree.highlight-kesekretariatan .org-col-kepaniteraan {
  opacity: 0.25;
  transition: opacity 0.3s ease;
}

/* ---------- Modern Legend / Footer of Canvas ---------- */
.org-footer {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.org-legend {
  display: flex;
  align-items: center;
  gap: 20px;
}

.org-legend-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #64748b;
  text-transform: uppercase;
}

.org-legend-items {
  display: flex;
  align-items: center;
  gap: 18px;
}

.org-legend-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #334155;
}

.org-line-coord {
  width: 36px;
  border-top: 2px dashed #6366f1;
}

.org-line-resp {
  width: 36px;
  border-top: 2px solid #0f766e;
}

.org-dept-badges-summary {
  display: flex;
  align-items: center;
  gap: 8px;
}

.org-dept-badge-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 700;
  color: #475569;
}

.org-dept-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot-pimpinan { background: #0f766e; }
.dot-hakim { background: #6366f1; }
.dot-kepaniteraan { background: #0284c7; }
.dot-kesekretariatan { background: #059669; }

/* ==========================================================================
   LIST VIEW (Mode Daftar Terstruktur - Mobile & Accessibility Friendly)
   ========================================================================== */
.org-list-view {
  display: none;
  flex-direction: column;
  gap: 20px;
}

.org-list-view.active {
  display: flex;
}

.org-section-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.org-section-title {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 10px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.org-section-title svg {
  color: #0f766e;
}

.org-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.org-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.org-list-item:hover {
  background: #ffffff;
  border-color: #0f766e;
  box-shadow: 0 4px 14px rgba(15, 118, 110, 0.08);
  transform: translateY(-1px);
}

.org-list-avatar {
  width: 44px;
  height: 56px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.org-list-avatar svg {
  width: 26px;
  height: 26px;
  color: #cbd5e1;
}

.org-list-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.org-list-info {
  flex-grow: 1;
}

.org-list-name {
  font-size: 12.5px;
  font-weight: 800;
  color: #0f172a;
  margin-top: 3px;
}
