/* History Actions Shadow CSS */

/* History Actions Styles */
.history-actions {
  padding: 24px;
  text-align: center;
}

.success-icon {
  width: 48px;
  height: 48px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: white;
}

.success-icon svg {
  width: 24px;
  height: 24px;
}

.action-buttons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.action-button {
  flex: 1;
  padding: 12px;
  border: 1px solid #e5e7eb;
  background: white;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.action-button:hover {
  background: #f9fafb;
}

.action-button.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
}

.action-button.primary:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 480px) {
  .history-actions {
    padding: 20px;
  }
}