/* ============================================================
   Operations Dashboard summary row
   ============================================================ */

.ft-operations-dashboard {
  max-width: 1280px;
  margin: 1.5rem auto 1rem;
  padding: 0;
}

.ft-operations-dashboard__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ft-operations-dashboard__pulse {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #1d6fff;
  background: #f3f8ff;
  border: 1px solid #cfe0ff;
  border-radius: 999px;

  font-size: 28px;
  line-height: 1;
}

.ft-operations-dashboard__header h2 {
  margin: 0 0 0.25rem;
  color: #0b2742;
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 750;
}

.ft-operations-dashboard__header p {
  margin: 0;
  color: #66758a;
  font-size: 0.92rem;
}

.ft-operations-dashboard__summary {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.ft-op-card {
  display: flex;
  align-items: center;
  gap: 1rem;

  min-height: 96px;
  padding: 1rem 1.1rem;

  background: #ffffff;
  border: 1px solid #dbe4ee;
  border-left: 4px solid #dbe4ee;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(15, 35, 55, 0.05);
}

.ft-op-card__icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #1d6fff;
  background: #eef5ff;
  border-radius: 999px;

  font-size: 22px;
  font-weight: 700;
}

.ft-op-card__number {
  color: #0b2742;
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 780;
}

.ft-op-card__title {
  margin-top: 0.3rem;
  color: #102033;
  font-size: 0.86rem;
  font-weight: 700;
}

.ft-op-card__subtitle {
  margin-top: 0.25rem;
  color: #66758a;
  font-size: 0.78rem;
}

.ft-op-card--healthy,
.ft-op-card--backups,
.ft-op-card--servers {
  border-left-color: #2f9e44;
}

.ft-op-card--healthy .ft-op-card__icon,
.ft-op-card--backups .ft-op-card__icon,
.ft-op-card--servers .ft-op-card__icon {
  color: #2f9e44;
  background: #eef9f0;
}

.ft-op-card--warning {
  border-left-color: #f59f00;
}

.ft-op-card--warning .ft-op-card__icon {
  color: #f08c00;
  background: #fff4df;
}

.ft-op-card--critical {
  border-left-color: #e03131;
}

.ft-op-card--critical .ft-op-card__icon {
  color: #e03131;
  background: #fff0f0;
}

@media (max-width: 1200px) {
  .ft-operations-dashboard__summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .ft-operations-dashboard__summary {
    grid-template-columns: 1fr;
  }
}


.ft-dashboard-jira-section {
  margin: 24px 0;
}

.ft-dashboard-panel {
  border: 1px solid #dbe5f2;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.ft-dashboard-panel__header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 20px;
  border-bottom: 1px solid #e5edf7;
  background: #f8fafc;
}

.ft-dashboard-panel__header h3 {
  margin: 0;
  color: #102a56;
  font-size: 20px;
  font-weight: 700;
}

.ft-dashboard-panel__header p {
  margin: 5px 0 0;
  color: #64748b;
  font-size: 13px;
}

.ft-dashboard-panel__link {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid #dbe5f2;
  border-radius: 8px;
  background: #ffffff;
  color: #0b5ed7;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.ft-dashboard-panel__link:hover {
  background: #eff6ff;
  text-decoration: none;
}

.ft-dashboard-table-wrap {
  overflow-x: auto;
}

.ft-dashboard-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.ft-dashboard-table th {
  padding: 10px;
  text-align: left;
  background: #f8fafc;
  color: #334155;
  border-bottom: 1px solid #dbe5f2;
}

.ft-dashboard-table td {
  padding: 9px 10px;
  color: #172b4d;
  border-bottom: 1px solid #e5edf7;
  vertical-align: top;
}

.ft-dashboard-table tbody tr:hover td {
  background: #f8fafc;
}

.ft-dashboard-table--jira td:first-child {
  white-space: nowrap;
}

.ft-dashboard-table--jira td:nth-child(2),
.ft-dashboard-table--jira td:nth-child(4),
.ft-dashboard-table--jira td:nth-child(5),
.ft-dashboard-table--jira td:nth-child(6) {
  white-space: nowrap;
}

.ft-dashboard-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.ft-dashboard-badge--red {
  background: #fee2e2;
  color: #b91c1c;
}

.ft-dashboard-panel__footer {
  padding: 10px 20px;
  color: #64748b;
  font-size: 12px;
  background: #f8fafc;
  border-top: 1px solid #e5edf7;
}

.ft-dashboard-empty {
  margin: 0;
  padding: 18px 20px;
  color: #64748b;
}
