/* Custom CSS Variables based on the original globals.css */
:root {
  --background: 0 0% 100%;
  --foreground: 222.2 84% 4.9%;
  --card: 0 0% 100%;
  --card-foreground: 222.2 84% 4.9%;
  --popover: 0 0% 100%;
  --popover-foreground: 222.2 84% 4.9%;
  --primary: 222.2 47.4% 11.2%;
  --primary-foreground: 210 40% 98%;
  --secondary: 210 40% 96%;
  --secondary-foreground: 222.2 84% 4.9%;
  --muted: 210 40% 96%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --accent: 210 40% 96%;
  --accent-foreground: 222.2 84% 4.9%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 214.3 31.8% 91.4%;
  --input: 214.3 31.8% 91.4%;
  --ring: 222.2 84% 4.9%;
  --radius: 0.5rem;
  --chart-1: 12 76% 61%;
  --chart-2: 173 58% 39%;
  --chart-3: 197 37% 24%;
  --chart-4: 43 74% 66%;
  --chart-5: 27 87% 67%;
}

/* Base styles */
* {
  border-color: hsl(var(--border));
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Inter', sans-serif;
}

/* Custom button styles matching the original design */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.btn:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.btn-default {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.5rem 1rem;
  height: 2.5rem;
}

.btn-default:hover {
  background-color: hsl(var(--primary) / 0.9);
}

.btn-lg {
  height: 2.75rem;
  padding: 0.5rem 2rem;
}

/* Custom card styles */
.card {
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--card));
  color: hsl(var(--card-foreground));
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.card-content {
  padding: 1.5rem;
}

/* Icon styles */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.icon-lg {
  width: 3rem;
  height: 3rem;
}

/* Star rating styles */
.star {
  width: 1rem;
  height: 1rem;
}

.star-filled {
  color: #facc15;
  fill: currentColor;
}

.star-empty {
  color: #d1d5db;
}

/* Custom utility classes for brand colors */
.bg-brand-blue {
  background-color: #0067c6;
}

.bg-brand-dark-blue {
  background-color: #283b92;
}

.bg-brand-light-blue {
  background-color: #30a8d4;
}

.bg-brand-green {
  background-color: #22c55e;
}

.text-brand-blue {
  color: #0067c6;
}

.text-brand-dark-blue {
  color: #283b92;
}

.text-brand-light-blue {
  color: #30a8d4;
}

.text-brand-green {
  color: #22c55e;
}

/* Responsive image utility */
.responsive-img {
  max-width: 100%;
  height: auto;
}

/* Custom gradient backgrounds */
.gradient-blue-green {
  background: linear-gradient(to right, #30a8d4, #22c55e);
}

/* Smooth transitions */
.transition-colors {
  transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}

.transition-all {
  transition: all 0.2s;
}

/* Hover effects */
.hover-underline:hover {
  text-decoration: underline;
}

/* Font family utilities */
.font-poppins {
  font-family: 'Poppins', sans-serif;
}

.font-baloo {
  font-family: 'Baloo Thambi 2', sans-serif;
}