/* Add custom styles here that complement or override Tailwind CSS */

/* Example: Add a bit more flair to buttons if needed */
/* .btn-custom {
    @apply py-2 px-4 font-semibold rounded-lg shadow-md;
}
.btn-custom-primary {
    @apply bg-indigo-600 text-white hover:bg-indigo-700;
} */

/* Custom styles for HDP corporate dashboard application */

/* Base styling improvements */
:root {
  --color-primary: #4f46e5;
  --color-primary-light: #6366f1;
  --color-primary-dark: #4338ca;
  --color-accent: #0ea5e9;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-text-main: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-tertiary: #94a3b8;
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.375rem;
  --border-radius-lg: 0.5rem;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition-short: 150ms ease-in-out;
  --transition-medium: 300ms ease-in-out;
}

body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-text-main);
  background-color: #f8fafc;
}

/* Enhanced text styling */
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.025em;
}

/* Beautiful scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Links and buttons */
a {
  transition: all var(--transition-short);
}

button, .btn {
  transition: all var(--transition-short);
}

/* Card and element styling */
.card {
  @apply bg-white rounded-lg border border-slate-100 shadow-sm transition-all duration-300;
}
.card:hover {
  @apply shadow-md border-slate-200;
}

/* Utility classes */
.text-gradient {
  @apply text-transparent bg-clip-text bg-gradient-to-r from-indigo-600 via-blue-600 to-sky-500;
}

.border-gradient {
  position: relative;
}
.border-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

/* Animations and transitions */
.hover-lift {
  transition: transform var(--transition-medium);
}
.hover-lift:hover {
  transform: translateY(-3px);
}

/* Subtle effects */
.subtle-shadow {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.card-effect {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px) saturate(180%);
  -webkit-backdrop-filter: blur(8px) saturate(180%);
  border: 1px solid rgba(209, 213, 219, 0.3);
}

/* Corporate dashboard specific components */
.dashboard-header {
  border-bottom: 1px solid #e2e8f0;
  @apply py-5 mb-6;
}

.data-pill {
  @apply px-3 py-1 rounded-full text-xs font-medium inline-flex items-center;
}

.feature-card {
  @apply bg-white border border-slate-100 shadow-sm p-6 rounded-lg hover:shadow-md transition-all duration-300 hover:border-indigo-100;
}

.feature-card h3 {
  @apply text-xl font-medium mb-3 text-slate-800;
}

.feature-card p {
  @apply text-slate-600 text-sm;
}

/* Focus states */
.focus-ring {
  @apply focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2;
}

/* You can define custom animations or utilities here */
.hdp-gradient-text {
    @apply text-transparent bg-clip-text bg-gradient-to-r from-purple-600 via-pink-600 to-blue-600;
} 