/* 
 * Progvision Builder - Site-Notification Styles
 * Styles für die Benachrichtigungen im gesamten System
 */

.site-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 90%;
  max-width: 400px;
  background-color: var(--white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.site-notification.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.notification-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.site-notification.success .notification-icon {
  background-color: #ecfdf5;
  color: #10b981;
}

.site-notification.error .notification-icon {
  background-color: #fef2f2;
  color: #ef4444;
}

.site-notification.warning .notification-icon {
  background-color: #fffbeb;
  color: #f59e0b;
}

.site-notification.info .notification-icon {
  background-color: #eff6ff;
  color: #3b82f6;
}

.notification-message {
  flex: 1;
  color: var(--gray-700);
  font-weight: 500;
}

.notification-close {
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  font-size: 1.25rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.notification-close:hover {
  color: var(--gray-700);
}

/* Social Media Ripple-Effekt */
.social-ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  to {
    transform: scale(2);
    opacity: 0;
  }
}