.header {
  text-align: center;
  margin-bottom: 48px;
}
.header img {
  max-width: 110px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(11, 61, 145, 0.15));
}
.header h1 {
  margin: 0;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary-color);
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header p {
  margin: 8px 0 0 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary-text-color);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.menu-card {
  background: var(--panel-background);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  border: 1px solid var(--border-color);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-height: 160px;
  justify-content: center;
  transition: border-color var(--transition-speed) ease, background-color var(--transition-speed) ease;
}
.menu-card:hover {
  border-color: var(--primary-light);
  background: var(--base-background);
}
.menu-card .icon {
  font-size: 36px;
  color: var(--primary-light);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-info-bg);
  border-radius: 16px;
}
.menu-card:hover .icon {
  background: var(--primary-light);
  color: #fff;
}
.menu-card .label {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.4;
}

/* Tab Styling */
.tabs-container {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--border-color);
}
.tab-button {
  padding: 14px 28px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: var(--secondary-text-color);
  border-bottom: 3px solid transparent;
  transition: border-bottom-color var(--transition-speed) ease, color var(--transition-speed) ease;
}
.tab-button.active {
  color: var(--primary-light);
  border-bottom-color: var(--primary-light);
}
.tab-button:hover:not(.active) {
  color: var(--primary-color);
  background: rgba(15, 23, 42, 0.03);
  border-radius: 8px 8px 0 0;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* Notifikasi Unit Belum Service */
.notif-service {
  background: var(--panel-background);
  border-left: 6px solid var(--color-warning);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 32px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border-top: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  transition: border-color var(--transition-speed) ease;
}
.notif-service:hover {
  border-color: var(--primary-light);
}
.notif-service.complete {
  border-left-color: var(--color-success);
}
.notif-service.complete .notif-icon-status {
  color: var(--color-success);
}
.notif-service.error {
  border-left-color: var(--color-error);
}
.notif-service.error .notif-icon-status {
  color: var(--color-error);
}
.notif-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.notif-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}
.notif-icon-status {
  font-size: 24px;
  color: var(--color-warning);
}
.notif-text {
  font-weight: 700;
  font-size: 16px;
  color: var(--primary-color);
}
.notif-toggle {
  font-size: 16px;
  color: var(--secondary-text-color);
  }
.notif-service.expanded .notif-toggle {
  transform: rotate(180deg);
}

/* Progress Bar */
.notif-progress-container {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}
.notif-progress-bar {
  width: 100%;
  height: 8px;
  background: var(--border-color);
  border-radius: 4px;
  overflow: hidden;
}
.notif-progress-fill {
  height: 100%;
  background: var(--accent-gradient);
  border-radius: 4px;
  transition: width 0.3s ease;
}
.notif-service.complete .notif-progress-fill {
  background: var(--color-success);
}
.notif-progress-text {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  text-align: right;
  color: var(--secondary-text-color);
}

.notif-details {
  display: none;
}
.notif-service.expanded .notif-details {
  display: block;
  margin-top: 20px;
  max-height: 600px;
  overflow-y: auto;
  padding-right: 8px;
}
.notif-coverage-group {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
}
.notif-coverage-group:last-child {
  border-bottom: 0;
}
.notif-coverage-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.notif-customer-list {
  display: grid;
  gap: 8px;
}
.notif-customer-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--base-background);
  border-radius: 8px;
  font-size: 14px;
}
.notif-customer-name {
  font-weight: 600;
}
.notif-customer-progress {
  font-weight: 700;
  color: var(--color-error);
}

.notif-footer-compact {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  font-size: 13px;
  color: var(--secondary-text-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 768px) {
  .header h1 { font-size: 30px; }
  .header p { font-size: 15px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .menu-card { padding: 16px; min-height: 140px; }
  .menu-card .icon { width: 52px; height: 52px; font-size: 28px; }
  .menu-card .label { font-size: 13px; }
  .notif-text { font-size: 14px; }
}