/* SalesNet Custom Styles */

/* Global Styles */
:root {
  --app-primary: #1976d2;
  --app-success: #4caf50;
  --app-warning: #ff9800;
  --app-danger: #f44336;
  --app-info: #2196f3;
}

body {
  font-family: "Roboto", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f5f5;
}

/* Radzen Overrides for Professional Look */
.rz-card {
  border-radius: 8px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.rz-button {
  border-radius: 6px !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
}

.rz-button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.rz-data-grid {
  border-radius: 8px !important;
  overflow: hidden;
}

.rz-datatable-thead {
  background: #f5f5f5 !important;
  font-weight: 600 !important;
}

/* Custom Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.3s ease-in-out;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Responsive Utilities */
@media (max-width: 768px) {
  .metric-card {
    margin-bottom: 1rem;
  }

  .quick-actions {
    flex-direction: column;
  }

  .action-button {
    width: 100%;
    min-width: auto;
  }
}

/* Print Styles */
@media print {
  .rz-sidebar,
  .rz-header,
  .rz-footer,
  .rz-button {
    display: none !important;
  }
}
