/* Obsługa zgłoszeń — style domenowe (font jak reszta KSC) */
.obsluga-shell {
  --obsluga-navy: #1b3a4b;
  --obsluga-navy-deep: #0f2430;
  --obsluga-accent: #c45c26;
  --obsluga-ok: #2f6f4e;
}

.obsluga-shell .panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(27, 58, 75, 0.12);
  border-radius: 0.5rem;
  box-shadow: 0 8px 24px rgba(15, 36, 48, 0.06);
}

.obsluga-shell .btn-accent {
  background-color: var(--obsluga-accent);
  border-color: var(--obsluga-accent);
  color: #fff;
}

.obsluga-shell .btn-accent:hover {
  background-color: #a34b1e;
  border-color: #a34b1e;
  color: #fff;
}

.obsluga-shell .badge-status-new { background: #3d6b8a; }
.obsluga-shell .badge-status-in_progress { background: #c45c26; }
.obsluga-shell .badge-status-waiting_vendor { background: #7a5c2e; }
.obsluga-shell .badge-status-waiting_decision { background: #6b3d7a; }
.obsluga-shell .badge-status-resolved { background: var(--obsluga-ok); }
.obsluga-shell .badge-status-closed { background: #5a6570; }

.obsluga-subnav {
  border-bottom: 1px solid rgba(27, 58, 75, 0.12);
  padding-bottom: 0.5rem;
}

.obsluga-subnav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.obsluga-subnav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  border-radius: 0.375rem;
  color: #4a5a66;
  text-decoration: none;
  font-size: 0.9rem;
}

.obsluga-subnav-link:hover {
  background: rgba(27, 58, 75, 0.08);
  color: var(--obsluga-navy);
}

.obsluga-subnav-link.is-active {
  background: rgba(196, 92, 38, 0.12);
  color: var(--obsluga-accent);
  font-weight: 600;
}

.obsluga-role-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.5rem;
  background: rgba(196, 92, 38, 0.12);
  color: var(--obsluga-accent);
  font-size: 1.35rem;
}

.obsluga-role-card.is-current {
  border: 1px solid rgba(196, 92, 38, 0.45);
  box-shadow: 0 8px 24px rgba(196, 92, 38, 0.12);
}

.obsluga-shell .kanban {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 0.75rem;
  overflow-x: auto;
}

.obsluga-shell .kanban-col {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(27, 58, 75, 0.1);
  border-radius: 0.4rem;
  min-height: 220px;
  padding: 0.6rem;
}

.obsluga-shell .kanban-col h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #4a5a66;
  margin-bottom: 0.6rem;
}

.obsluga-shell .kanban-card {
  display: block;
  background: #fff;
  border-left: 3px solid var(--obsluga-navy);
  padding: 0.55rem 0.65rem;
  margin-bottom: 0.5rem;
  text-decoration: none;
  color: inherit;
  border-radius: 0.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.obsluga-shell .kanban-card:hover {
  box-shadow: 0 3px 10px rgba(15, 36, 48, 0.1);
}

.obsluga-shell .kanban-card.prio-high,
.obsluga-shell .kanban-card.prio-critical {
  border-left-color: var(--obsluga-accent);
}

.obsluga-shell .raci-table th,
.obsluga-shell .raci-table td {
  font-size: 0.85rem;
  vertical-align: middle;
}

.obsluga-shell .timeline-item {
  border-left: 2px solid #c5d0d6;
  padding-left: 0.9rem;
  margin-left: 0.3rem;
  margin-bottom: 0.75rem;
}

.obsluga-shell .drop-zone {
  border: 2px dashed #9aafba;
  border-radius: 0.4rem;
  padding: 1rem;
  background: #f4f7f8;
}

@media (max-width: 992px) {
  .obsluga-shell .kanban {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }
}
