@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Modern Tailwind-inspired Styles */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.btn { 
  padding: 0.75rem 1.5rem; 
  border-radius: 0.5rem; 
  font-weight: 500; 
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-primary { 
  background: #3b82f6; 
  color: white; 
}
.btn-primary:hover { 
  background: #2563eb; 
  transform: translateY(-1px); 
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4); 
}

.form-control { 
  border: 1px solid #d1d5db; 
  border-radius: 0.5rem; 
  padding: 0.75rem; 
  width: 100%; 
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}
.form-control:focus { 
  outline: none; 
  border-color: #3b82f6; 
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.card { 
  background: white; 
  border-radius: 0.75rem; 
  padding: 1.5rem; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07); 
  border: 1px solid #f3f4f6;
  margin-bottom: 1rem;
}

/* Modern improvements */
body { 
  font-family: 'Inter', sans-serif; 
  background: #f9fafb; 
  line-height: 1.6;
}
.header { 
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.nav-tabs { 
  border-bottom: 2px solid #e5e7eb; 
  background: white;
  padding: 0 1rem;
}
.nav-tabs .active { 
  border-bottom: 2px solid #3b82f6; 
  color: #3b82f6; 
  font-weight: 600;
}
.ticket-item { 
  border-left: 4px solid #3b82f6; 
  background: white; 
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 0.5rem;
}
.ticket-item:hover { 
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
}
