

.email-suggestions {
  border: 1px solid #ccc;
  position: absolute;
  background: white;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  min-width: 200px;
  max-width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  font-size: 16px; /* больше шрифт */
  border-radius: 8px;
  touch-action: manipulation; /* для мобильных тапов */
}

.email-suggestions li {
  padding: 14px 16px;
  cursor: pointer;
}

.email-suggestions li:hover {
  background-color: #f2f2f2;
}

@media (max-width: 480px) {
  .email-suggestions {
    font-size: 18px;
  }

  .email-suggestions li {
    padding: 16px;
  }
}
