.social-proof-notification {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #1f2937; /* Removed transparency */
  color: #e5e7eb;
  border-radius: 12px;
  border: 1px solid rgba(163, 230, 53, 0.3); /* Elegant border using lime color */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 1px rgba(163, 230, 53, 0.2);
  display: flex;
  align-items: center;
  padding: 16px;
  max-width: 430px; /* Increased from 320px (about 35% larger) */
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.social-proof-notification.show {
  opacity: 1;
  transform: translateY(0);
}

.social-proof-notification .icon {
  background: #a3e635; /* Color lime similar al del hover de los enlaces */
  color: #365314; /* Verde oscuro */
  border-radius: 50%;
  width: 54px; /* Increased from 40px */
  height: 54px; /* Increased from 40px */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
  flex-shrink: 0;
}

.social-proof-notification .content {
  flex-grow: 1;
}

.social-proof-notification .title {
  font-weight: 600;
  font-size: 16px; /* Increased from 14px */
  margin-bottom: 6px;
}

.social-proof-notification .message {
  font-size: 14px; /* Increased from 12px */
}

.social-proof-notification .property-image {
  width: 80px; /* Increased from 60px */
  height: 80px; /* Increased from 60px */
  object-fit: cover;
  border-radius: 8px;
  margin-left: 16px;
}

/* Estilos responsive */
@media (max-width: 640px) {
  .social-proof-notification {
    bottom: 10px;
    left: 10px;
    right: 10px;
    max-width: calc(100% - 20px);
    padding: 14px;
  }
  
  .social-proof-notification .property-image {
    width: 70px; /* Increased from 50px */
    height: 70px; /* Increased from 50px */
  }
  
  .social-proof-notification .icon {
    width: 48px;
    height: 48px;
  }
}
