.service-heading-actions,
.service-section-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-section-tabs {
  margin-bottom: 18px;
  padding: 5px;
  width: max-content;
  max-width: 100%;
  border: 1px solid #d8e4ef;
  border-radius: 12px;
  background: #eef5fb;
}

.service-section-tabs button {
  min-width: 180px;
  border: 0;
  border-radius: 8px;
  padding: 11px 18px;
  background: transparent;
  color: #51667d;
  font-weight: 800;
  cursor: pointer;
}

.service-section-tabs button.active {
  background: #0878ed;
  color: #fff;
  box-shadow: 0 7px 18px rgba(8, 120, 237, .2);
}

.service-section-panel {
  display: none;
}

.service-section-panel.active {
  display: block;
}

.backup-summary span {
  background: #e9f3ff !important;
  color: #0878ed;
}

.maintenance-type.backup {
  background: #e8f3ff;
  color: #0869c9;
}

.backup-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.backup-detail-grid > div {
  padding: 11px;
  border: 1px solid #e1eaf3;
  border-radius: 8px;
  background: #f8fbfe;
}

.backup-detail-grid small,
.backup-detail-grid b {
  display: block;
}

.backup-detail-grid small {
  margin-bottom: 4px;
  color: #718096;
  font-size: 9px;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .service-heading-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .service-section-tabs {
    width: 100%;
  }

  .service-section-tabs button {
    min-width: 0;
    flex: 1;
  }

  .backup-detail-grid {
    grid-template-columns: 1fr;
  }
}
