.entity-print-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.entity-print-popup-overlay.active {
  opacity: 1;
}

.entity-print-popup {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.entity-print-popup-overlay.active .entity-print-popup {
  transform: translateY(0);
}

.entity-print-popup-content {
  text-align: center;
}

.entity-print-popup-icon {
  color: #1fa176;
  margin-bottom: 20px;
  animation: bounce 1s infinite;
}

.entity-print-popup-icon svg {
  width: 48px;
  height: 48px;
}

.entity-print-popup h3 {
  margin: 0 0 10px 0;
  font-size: 24px;
  color: #333;
  font-weight: 600;
}

.entity-print-popup p {
  margin: 0 0 20px 0;
  color: #666;
  font-size: 16px;
}

.entity-print-popup-spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #1fa176;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 480px) {
  .entity-print-popup {
    padding: 30px 20px;
  }

  .entity-print-popup h3 {
    font-size: 20px;
  }

  .entity-print-popup p {
    font-size: 14px;
  }
}
