.email-sync-date-dialog {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(4px);
}

.email-sync-date-dialog__panel {
  width: min(100%, 410px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 18px;
  background: #fff;
  color: #172033;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.24);
}

.email-sync-date-dialog__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #eef5ff;
  color: #1677ff;
  font-size: 22px;
}

.email-sync-date-dialog__panel h2 {
  margin: 2px 0 0;
  font-size: 20px;
  line-height: 1.25;
}

.email-sync-date-dialog__panel p {
  margin: 0 0 4px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}

.email-sync-date-dialog__panel label {
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}

.email-sync-date-dialog__panel input {
  width: 100%;
  min-height: 46px;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  color: #172033;
  font: inherit;
}

.email-sync-date-dialog__panel input:focus {
  border-color: #1677ff;
  outline: 3px solid rgba(22, 119, 255, 0.14);
}

.email-sync-date-dialog__panel small {
  color: #64748b;
  font-size: 12px;
  line-height: 1.45;
}

.email-sync-date-dialog__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 8px;
}

.email-sync-date-dialog__actions button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 9px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.email-sync-date-dialog__cancel {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #475569;
}

.email-sync-date-dialog__confirm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid #1677ff;
  background: #1677ff;
  color: #fff;
}

.email-sync-date-dialog__cancel:hover {
  background: #f8fafc;
}

.email-sync-date-dialog__confirm:hover {
  background: #0969da;
}

@media (max-width: 520px) {
  .email-sync-date-dialog {
    align-items: end;
    padding: 12px;
  }

  .email-sync-date-dialog__panel {
    width: 100%;
    padding: 22px 18px 18px;
    border-radius: 20px;
  }

  .email-sync-date-dialog__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
