/* 
 * ValidateEmailVanilla.css
 * Styly pro vanilla JavaScript verzi ValidateEmail komponenty 
 */

.validateEmail {
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1050;
  position: fixed;
  max-width: 400px;
}

.validateEmail-arrow {
  position: absolute;
  top: -8px;
  left: 20px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-bottom-color: white;
  border-top: 0;
  filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.1));
}

.validateEmail-icon-error {
  color: #e2001a;
}

.validateEmail-icon-help {
  color: #6c757d;
}

.validateEmail-error-text {
  color: #e2001a;
  font-weight: 500;
}

.validateEmail-suggestion {
  color: #1e8cc6;
  font-weight: 500;
  cursor: pointer;
}

.validateEmail-suggestion:hover {
  text-decoration: underline;
}
