/* =========================================================================
   1. PAGE SHELLS
   ========================================================================= */
.approvals-page {
  min-height: 100vh;
  background: #f5f6f8;
  color: #111827;
}

.um-page {
  min-height: 100dvh;
  background: #f4f5f7;
  color: #111827;
}
.um-shell {
  max-width: 1440px;
  margin: 0 auto;
}

/* =========================================================================
   2. SHARED COMPONENTS (identical in both source files — declared once)
   ========================================================================= */

/* ---------- Corporate buttons (shared base) ------------------------------ */
.corperate-btn {
  border-radius: var(--sc-radius-xs);
  padding: 8px 12px;
  font-size: 14px;
  display: flex;
  gap: 6px;
  align-items: center;
  transition: 0.3s ease-in-out;
}
.corperate-btn:disabled {
  cursor: not-allowed;
}

/* black / primary */
.corperate-primary-btn {
  border: 1px solid #000000;
  background-color: #000000;
  color: #fff;
}
.corperate-primary-btn:hover:not(:disabled) {
  background: #000000;
}

/* white / secondary */
.corperate-secondary-btn {
  color: var(--sc-text-dark);
  border: 1px solid var(--sc-btn-border);
}

/* ---------- Avatar (shared base — dimensions supplied per page/modifier) - */
.avatar {
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

/* =========================================================================
   3. CONFLICT RESOLUTION (same class name, different rules → page-scoped)
   ========================================================================= */

/* ---------- .corperate-btn:disabled -------------------------------------- */
/* Approvals: base only. User Management additionally dims to 0.55. */
.um-page .corperate-btn:disabled {
  opacity: 0.55;
}

/* Approvals-specific primary disabled look (kept scoped to Approvals). */
.approvals-page .corperate-primary-btn:disabled {
  background: #ececf0;
  color: #9ca3af;
  border-color: #ececf0;
}

/* ---------- .corperate-secondary-btn:hover -------------------------------- */
.approvals-page .corperate-secondary-btn:hover:not(:disabled) {
  background: #f9fafb;
}
.um-page .corperate-secondary-btn:hover:not(:disabled) {
  background: #f8f9fa;
}

/* ---------- .icon-btn ----------------------------------------------------- */
.approvals-page .icon-btn {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  color: #6b7280;
  cursor: pointer;
  padding: 9px;
  line-height: 0;
  transition: background 0.15s ease;
}
.approvals-page .icon-btn:hover {
  background: #f9fafb;
}
.um-page .icon-btn {
  background: #ffffff;
  border: 1px solid #e3e4e8;
  border-radius: 10px;
  color: #6b7280;
  cursor: pointer;
  padding: 9px 11px;
  line-height: 0;
  transition: background 0.15s ease;
}
.um-page .icon-btn:hover {
  background: #f8f9fa;
}

/* ---------- .search-box + .search-input ---------------------------------- */
.approvals-page .search-box {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 9px 12px;
  color: #9ca3af;
}
.approvals-page .search-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 13px;
  color: #111827;
}
.approvals-page .search-input::placeholder {
  color: #9ca3af;
}

.um-page .search-box {
  background: #ffffff;
  border: 1px solid #e3e4e8;
  border-radius: 4px;
  padding: 9px 14px;
  color: #9aa1ac;
  min-width: 280px;
}
.um-page .search-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: #111827;
}
.um-page .search-input::placeholder {
  color: #9aa1ac;
}

/* ---------- .avatar (base dimensions differ) ----------------------------- */
/* Approvals sizes via .avatar-xs/-sm/-md modifiers (see Approvals section). */
/* User Management uses a single 38px avatar baked onto the base class.      */
.um-page .avatar {
  width: 38px;
  height: 38px;
  font-size: 13px;
}

/* ---------- .status-pending (Approvals uses it only compounded as ---------
   .status-pill.status-pending; UM uses it standalone in the table).        */
.um-page .status-pending {
  color: #d97706;
}
.um-page .status-pending .status-dot {
  background: #d97706;
}

/* =========================================================================
   4. APPROVALS PAGE — unique components
   ========================================================================= */

/* ---------- Typography --------------------------------------------------- */
.page-title {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.page-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}
.eyebrow-label {
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.card-eyebrow {
  font-size: 10px;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.detail-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #111827;
  margin: 0;
}
.author-name {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}
.author-meta {
  font-size: 12px;
  color: #9ca3af;
}
.muted-text {
  color: #9ca3af;
  font-weight: 500;
}

/* ---------- White panels (left queue + right detail) --------------------- */
.panel {
  background: #ffffff;
  border: 1px solid #ececf0;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(17, 24, 39, 0.04);
}
.panel-pad {
  padding: 18px;
}
.panel-empty {
  background: #ffffff;
  border: 1px solid #ececf0;
  border-radius: 16px;
  color: #9ca3af;
  font-size: 14px;
  padding: 80px 20px;
}
.panel-divider {
  border: 0;
  border-top: 1px solid #f1f1f4;
  margin: 0;
}

/* ---------- Buttons (Approvals-only variants) ---------------------------- */
/* danger (Reject) */
.corperate-danger-btn {
  background: #ffffff;
  color: #e1483b;
  border: 1px solid #f1c4bf;
}
.corperate-danger-btn:hover:not(:disabled) {
  background: #fef4f3;
}

.corperate-approve-btn {
    background: #15803d;
  color: #ffffff;
  border: 1px solid #16a34a; 
}
.corperate-approve-btn:hover:not(:disabled) {
  background: #166534;
}
/* plain ghost icon button (three-dot in detail header) */
.icon-btn-ghost {
  background: transparent;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 4px;
  line-height: 0;
  border-radius: 8px;
}
.icon-btn-ghost:hover {
  background: #f3f4f6;
  color: #6b7280;
}

/* image attach button inside the comment box */
.comment-image-btn {
  background: transparent;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 4px;
  line-height: 0;
}
.comment-image-btn:hover {
  color: #6b7280;
}

/* ---------- Filter chips ------------------------------------------------- */
.filter-chip {
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #4b5563;
  border-radius: 4px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}
.filter-chip:hover {
  background: #f9fafb;
}
.filter-chip.active {
  background: #161616;
  color: #ffffff;
  border-color: #161616;
}
.filter-chip-count {
  opacity: 0.7;
}

/* ---------- Approval queue cards ----------------------------------------- */
.approval-card {
  width: 100%;
  text-align: left;
  cursor: pointer;
  background: #ffffff;
  border: 1px solid #ececf0;
  border-radius: 8px;
  padding: 14px;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.approval-card:hover {
  border-color: #d6d6dc;
}
.approval-card.active {
  border: 1.5px solid #161616;
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.08);
}
.approval-card-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #111827;
}
.approval-author-name {
  font-size: 12px;
  color: #374151;
  font-weight: 500;
}

/* ---------- Priority badges ---------------------------------------------- */
.priority-badge {
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
  padding: 2px 9px;
  white-space: nowrap;
}
.priority-badge.priority-high {
  color: #d97706;
  background: #fffbeb;
}
.priority-badge.priority-medium {
  color: #2563eb;
  background: #eff6ff;
}
.priority-badge.priority-low {
  color: #16a34a;
  background: #f0fdf4;
}

/* ---------- Due indicator ------------------------------------------------ */
.due-indicator {
  font-size: 11px;
  font-weight: 500;
  color: #9ca3af;
}
.due-indicator.due-today {
  color: #d97706;
}

/* ---------- Status pill (detail header) ---------------------------------- */
.status-pill {
  border-radius: 4px;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 12px;
  white-space: nowrap;
}
.status-pill.status-pending {
  color: #d97706;
  background: #fffbeb;
}
.status-pill.status-approved {
  color: #16a34a;
  background: #f0fdf4;
}
.status-pill.status-changes {
  color: #7c3aed;
  background: #f5f3ff;
}
.status-pill.status-rejected {
  color: #dc2626;
  background: #fef2f2;
}

/* ---------- Content preview ---------------------------------------------- */
.content-preview-box .post-card {
  max-width: 550px;
  margin: 0 auto;
}
.content-preview-box .post-card-profile-wrapper {
  display: none !important;
}
.content-preview-box .post-card-footer {
  display: none !important;
}
.content-preview-box .template-footer {
  border-bottom: none;
}
.hashtags {
  color: #2563eb;
  font-weight: 500;
}

/* ---------- Comments ----------------------------------------------------- */
.comments-heading {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}
.comment-author-name {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}
.comment-time {
  font-size: 11px;
  color: #9ca3af;
}
.comment-text {
  font-size: 13px;
  color: #374151;
  line-height: 1.5;
  word-break: break-word;
}
.comment-compose {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
}
.comment-textarea {
  width: 100%;
  resize: none;
  border: none;
  outline: none;
  background: transparent;
  font-size: 13px;
  color: #111827;
  font-family: inherit;
  word-break: break-word;
  min-height: 60px;
}
.comment-textarea::placeholder {
  color: #9ca3af;
  font-size: 13px !important;
}

/* ---------- Queue footer ------------------------------------------------- */
.queue-footer {
  font-size: 13px;
  color: #9ca3af;
}

/* ---------- Avatar modifiers (Approvals) --------------------------------- */
.avatar-xs {
  width: 26px;
  height: 26px;
  font-size: 10px;
}
.avatar-sm {
  width: 32px;
  height: 32px;
  font-size: 11px;
}
.avatar-md {
  width: 38px;
  height: 38px;
  font-size: 13px;
}
.avatar-tint-slate {
  background: #eef0f3;
  color: #475569;
}
.avatar-tint-sky {
  background: #e6f1fb;
  color: #0369a1;
}
.avatar-tint-emerald {
  background: #e7f7ee;
  color: #15803d;
}
.avatar-dark {
  background: #161616;
  color: #ffffff;
}

/* ---------- Toast (Approvals) -------------------------------------------- */
.approvals-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: #161616;
  color: #ffffff;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  z-index: 100;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* =========================================================================
   5. USER MANAGEMENT PAGE — unique components
   ========================================================================= */

/* ---------- Typography --------------------------------------------------- */
.um-title {
  font-size: 27px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}
.um-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}
.um-section-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}
.um-section-subtitle {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

/* ---------- Cards -------------------------------------------------------- */
.um-card {
  background: #ffffff;
  border: 1px solid #ececef;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}
.um-card-pad {
  padding: 20px;
}

/* ---------- Buttons (User Management-only variants) ---------------------- */
/* ghost icon button used in table action column */
.row-action-btn {
  background: transparent;
  border: none;
  color: #9aa1ac;
  cursor: pointer;
  padding: 6px;
  line-height: 0;
  border-radius: 8px;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}
.row-action-btn:hover {
  background: #f1f2f4;
  color: #374151;
}

/* link-style action (View all roles) */
.ghost-link {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ghost-link:hover {
  color: #000000;
}

/* full-width outlined button (Manage Roles) */
.outline-block-btn {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e3e4e8;
  border-radius: 10px;
  color: #1f2937;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 14px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.outline-block-btn:hover {
  background: #f8f9fa;
}

/* ---------- Stat cards --------------------------------------------------- */
.stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  background: #f1f2f4;
  color: #4b5563;
  font-size: 20px;
}
.stat-label {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}
.stat-value {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  color: #0f172a;
}
.stat-value-slash {
  margin: 0 3px 0 5px;
}
.stat-trend {
  font-size: 13px;
  color: #6b7280;
}
.stat-trend .trend-up {
  color: #16a34a;
  font-weight: 600;
}
.stat-trend .trend-down {
  color: #dc2626;
  font-weight: 600;
}
/* trend badge pinned to the top-right of the card, beside the icon */
.stat-trend-chip {
  font-size: 12.5px;
  font-weight: 600;
  border-radius: 999px;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.stat-trend-chip.trend-up {
  color: #16a34a;
  background: #e9f9ef;
}
.stat-trend-chip.trend-down {
  color: #dc2626;
  background: #fdecec;
}

/* ---------- Tabs --------------------------------------------------------- */
.um-tab {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 6px 2px;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  transition:
    color 0.15s ease,
    border-color 0.15s ease;
}
.um-tab:hover {
  color: #374151;
}
.um-tab.active {
  color: #0f172a;
  font-weight: 600;
  border-bottom-color: #0f172a;
}

/* ---------- Table -------------------------------------------------------- */
.user-table {
  width: 100%;
  border-collapse: collapse;
}
.user-table thead th {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9aa1ac;
  padding: 10px 14px;
  border-bottom: 1px solid #eef0f2;
  white-space: nowrap;
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 2;
}
.user-table tbody td {
  padding: 12px;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: middle;
}
.user-table tbody tr:last-child td {
  border-bottom: none;
}
.user-table tbody tr:hover {
  background: #fafbfc;
}
.th-sortable {
  cursor: pointer;
  user-select: none;
}
.sort-icon {
  color: #c2c7cf;
  font-size: 12px;
}
.sort-icon.active {
  color: #0f172a;
}
.user-name {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}
.user-email {
  font-size: 12px;
  color: #9aa1ac;
}

/* role pill — neutral outlined */
.role-pill {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 500;
  color: #374151;
  background: #f6f7f9;
  border: 1px solid #e8eaed;
  border-radius: 999px;
  padding: 4px 12px;
  white-space: nowrap;
}

/* department cell */
.dept-cell {
  font-size: 14px;
  color: #374151;
}
.dept-icon {
  color: #9aa1ac;
  font-size: 15px;
}

/* status (table) — .status-pending handled in conflict section above ------ */
.status-text {
  font-size: 13.5px;
  font-weight: 500;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}
.status-active {
  color: #16a34a;
}
.status-active .status-dot {
  background: #16a34a;
}
.status-deactivated {
  color: #6b7280;
}
.status-deactivated .status-dot {
  background: #9aa1ac;
}
.last-active {
  font-size: 13px;
  color: #6b7280;
}

/* ---------- Avatar tint (User Management) -------------------------------- */
.avatar-soft {
  background: #eef0f3;
  color: #475569;
}

/* ---------- Row dropdown menu ------------------------------------------- */
.row-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 184px;
  background: #ffffff;
  border: 1px solid #ececef;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.12);
  padding: 6px;
  z-index: 30;
}
.row-menu-item {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  border-radius: 7px;
  padding: 8px 10px;
  font-size: 13px;
  color: #374151;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.row-menu-item:hover {
  background: #f5f6f8;
}
.row-menu-item.danger {
  color: #dc2626;
}
.row-menu-item.danger:hover {
  background: #fdecec;
}

/* ---------- Role overview ------------------------------------------------ */
.role-item {
  cursor: pointer;
  border-radius: 10px;
  padding: 6px 8px;
  transition: background 0.15s ease;
}
.role-item:hover {
  background: #f6f7f9;
}
.role-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #f1f2f4;
  color: #4b5563;
  font-size: 17px;
}
.role-name {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}
.role-meta {
  font-size: 12.5px;
  color: #9aa1ac;
}

/* section header row (title + small add/manage icon button) */
.section-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.title-icon-btn {
  border-radius: 6px;
  color: #374151;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.15s ease;
}
.title-icon-btn:hover {
  background: #eef0f3;
}

/* "See more" trigger at the bottom of capped lists */
.see-more-btn {
  width: 100%;
  background: transparent;
  border: 1px solid #e3e4e8;
  border-radius: 4px;
  color: #374151;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
}
.see-more-btn:hover {
  background: #f8f9fa;
  border-color: #d7d9de;
}

/* ---------- Pagination --------------------------------------------------- */
.table-footer-text {
  font-size: 13.5px;
  color: #6b7280;
}
.pager-btn {
  min-width: 34px;
  text-align: center;
  height: 34px;
  border-radius: 8px;
  border: 1px solid #e3e4e8;
  background: #ffffff;
  color: #374151;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  padding: 0 8px;
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
}
.pager-btn:hover:not(:disabled):not(.active) {
  background: #f5f6f8;
}
.pager-btn.active {
  background: #161616;
  border-color: #161616;
  color: #ffffff;
}
.pager-btn:disabled {
  color: #c2c7cf;
  cursor: not-allowed;
}
.pager-ellipsis {
  color: #9aa1ac;
  font-size: 14px;
  padding: 0 4px;
}
.page-size-select {
  border: 1px solid #e3e4e8;
  border-radius: 8px;
  background: #ffffff;
  color: #374151;
  font-size: 13.5px;
  font-weight: 500;
  padding: 7px 10px;
  cursor: pointer;
  outline: none;
}

/* ---------- Empty state -------------------------------------------------- */
.corperate-empty-state {
  color: #9aa1ac;
  font-size: 14px;
  margin: auto;
}
.corperate-empty-state .empty-icon {
  font-size: 30px;
  color: #c2c7cf;
}

/* ---------- Modal -------------------------------------------------------- */
.um-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 1050;
}
.um-modal {
  position: fixed;
  inset: 0;
  z-index: 1060;
}
.um-modal-card {
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(16, 24, 40, 0.25);
}
.um-modal-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}
.um-modal-close {
  background: transparent;
  border: none;
  color: #9aa1ac;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.um-modal-close:hover {
  color: #374151;
}
.um-form-label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}
.um-input,
.um-select {
  width: 100%;
  border: 1px solid #e3e4e8;
  border-radius: 9px;
  padding: 9px 12px;
  font-size: 14px;
  color: #111827;
  outline: none;
  background: #ffffff;
}
.um-input:focus,
.um-select:focus {
  border-color: #b9bdc6;
}
.um-input::placeholder {
  color: #9aa1ac;
}

/* ---------- Toast (User Management) -------------------------------------- */
.um-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #161616;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  z-index: 1080;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---------- Manage (roles / departments) modal ------------------------- */
.um-modal-scroll {
  max-height: 56vh;
  overflow-y: auto;
}
.manage-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.manage-row {
  border: 1px solid #eef0f2;
  border-radius: 10px;
  padding: 8px 10px;
}
.manage-row-name {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}
.manage-row-count {
  font-size: 12.5px;
  color: #9aa1ac;
}
.manage-input {
  border: 1px solid #e3e4e8;
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 13.5px;
  color: #111827;
  outline: none;
  background: #ffffff;
}
.manage-input:focus {
  border-color: #b9bdc6;
}
.manage-reassign {
  background: #fafbfc;
  border-top: 1px dashed #e8eaed;
  border-radius: 0 0 10px 10px;
  margin: 8px -10px -8px;
  padding: 10px;
}
.manage-reassign-label {
  font-size: 12.5px;
  color: #6b7280;
  font-weight: 500;
}
.manage-warn {
  font-size: 12.5px;
  color: #d97706;
  font-weight: 500;
}
.mini-danger-btn {
  background: #dc2626;
  border: 1px solid #dc2626;
  color: #ffffff;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 12px;
  cursor: pointer;
}
.mini-danger-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.mini-btn {
  background: #ffffff;
  border: 1px solid #e3e4e8;
  color: #374151;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 12px;
  cursor: pointer;
}
.mini-btn:hover {
  background: #f8f9fa;
}
