/* Lokaal Schoon — mobiele medewerkerweergave */
.employee-header {
  min-height: 310px;
  padding-bottom: 64px;
}

.employee-header-top {
  gap: 14px;
}

.employee-user {
  min-width: 0;
  max-width: calc(100% - 62px);
}

.employee-user > span {
  min-width: 0;
  max-width: min(62vw, 260px);
}

.employee-user strong {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.employee-welcome {
  margin-top: 44px;
}

.employee-welcome h1 {
  max-width: 100%;
  font-size: clamp(27px, 7vw, 37px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.employee-welcome p {
  line-height: 1.5;
}

.employee-content {
  margin-top: -24px;
}

/* Opdrachten-pagina: pagina laten vullen tussen header en onderbalk,
   zodat er bij weinig/geen taken geen groot leeg wit vlak overblijft.
   Bij veel taken heeft dit geen effect (de kolom groeit gewoon mee). */
.employee-app {
  display: flex;
  flex-direction: column;
}

.employee-header {
  flex: 0 0 auto;
}

.employee-content {
  flex: 1 1 auto;
  justify-content: center;
  min-height: 0;
}

/* Opdrachten-pagina: nette kaart voor "geen opdrachten vandaag",
   in lijn met de rest van de app (zelfde stijl als het meldingenpaneel) */
.employee-content > section:not(.employee-notifications-panel) > .empty-state {
  background: #fff;
  border: 1px solid #e4e9e5;
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(15, 31, 22, 0.08);
  min-height: 260px;
  padding: 36px 28px;
}

.employee-content > section:not(.employee-notifications-panel) > .empty-state > svg {
  width: 28px;
  height: 28px;
  padding: 15px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e8f5ee, #d9f0e4);
  color: #17613e;
  margin-bottom: 14px;
}

.employee-content > section:not(.employee-notifications-panel) > .empty-state strong {
  font-size: 16px;
  color: #133e2c;
  font-weight: 760;
  letter-spacing: -0.01em;
}

.employee-content > section:not(.employee-notifications-panel) > .empty-state p {
  max-width: 260px;
  margin: 6px auto 0;
  font-size: 12px;
  line-height: 1.55;
  color: #667169;
}

/* Sectiekop "Vandaag" / "Binnenkort" iets luchtiger boven de kaart */
.employee-content .mobile-section-head {
  margin-bottom: 14px;
}

.employee-notifications-panel {
  width: 100%;
  min-height: 310px;
  padding: 22px;
  border: 1px solid #e4e9e5;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(15, 31, 22, 0.08);
}

.employee-notifications-head {
  padding-bottom: 18px;
  border-bottom: 1px solid #edf0ed;
}

.employee-notifications-head h2 {
  margin: 6px 0 5px;
  color: #133e2c;
  font-size: 22px;
  font-weight: 760;
  letter-spacing: -0.035em;
}

.employee-notifications-head p {
  max-width: 460px;
  margin: 0;
  color: #667169;
  font-size: 12px;
  line-height: 1.55;
}

.employee-notification-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
}

.employee-notification-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: start;
  padding: 14px;
  border: 1px solid #e7ece8;
  border-radius: 15px;
  background: #fafcfb;
}

.employee-notification-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #a86b18;
  background: #fff5df;
}

.employee-notification-item.resolved .employee-notification-icon {
  color: #238454;
  background: #e8f5ee;
}

.employee-notification-item strong {
  display: block;
  color: #133e2c;
  font-size: 12px;
}

.employee-notification-item p {
  margin: 3px 0 5px;
  color: #5f6a63;
  font-size: 11px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.employee-notification-item small {
  color: #8b958e;
  font-size: 9px;
}

.employee-notification-item > b {
  padding: 4px 7px;
  border-radius: 999px;
  color: #7c581e;
  background: #fff5df;
  font-size: 8px;
}

.employee-notification-item.resolved > b {
  color: #176b45;
  background: #e8f5ee;
}

.employee-notifications-panel > .empty-state {
  min-height: 210px;
}

@media (max-width: 430px) {
  .employee-header {
    min-height: 300px;
    padding-bottom: 58px;
  }

  .employee-welcome {
    margin-top: 42px;
  }

  .employee-welcome h1 {
    font-size: clamp(26px, 8vw, 33px);
  }

  .employee-content {
    margin-top: -20px;
  }

  .employee-notifications-panel {
    padding: 18px;
    border-radius: 19px;
  }

  .employee-notification-item {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .employee-notification-item > b {
    grid-column: 2;
    justify-self: start;
  }

  .employee-content > section:not(.employee-notifications-panel) > .empty-state {
    min-height: 230px;
    padding: 30px 22px;
  }
}
