/* Theme Styles - General theming and component styles */

/* This file contains general theme styles for the application.
   Fish dropdown styles have been moved to navbar.css where they belong.
   
   Add your general theme styles, component styles, 
   color schemes, typography, and other non-navbar 
   specific styles here.
*/

/* Example theme styles - customize as needed */

/* Color variables */
:root {
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --accent-color: #667eea;
  --text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* General hover effects for UI elements */
.hover-lift:hover {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

/* Glassmorphism effect utility */
.glass-effect {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Add your other theme-related styles below */