/*
Theme Name: My Snow Forecast Theme
Theme URI: https://example.com/my-snow-theme
Author: v0
Author URI: https://v0.dev
Description: A custom WordPress theme for snow forecasting, inspired by a Next.js dashboard.
Version: 1.0.0
Text Domain: my-snow-theme
*/

/* Basic Reset & Variables */
:root {
  --background: #ffffff;
  --foreground: #0a0a0a;
  --card-background: #ffffff;
  --card-foreground: #0a0a0a;
  --primary: #171717;
  --primary-foreground: #fafafe;
  --secondary: #f0f0f0;
  --secondary-foreground: #171717;
  --muted: #f0f0f0;
  --muted-foreground: #737373;
  --accent: #f0f0f0;
  --accent-foreground: #171717;
  --destructive: #ef4444;
  --destructive-foreground: #fafafe;
  --border: #e5e5e5;
  --input: #e5e5e5;
  --ring: #0a0a0a;

  /* Sidebar specific colors */
  --sidebar-background: #f8f8f8;
  --sidebar-foreground: #404040;
  --sidebar-primary: #171717;
  --sidebar-primary-foreground: #fafafe;
  --sidebar-accent: #f0f0f0;
  --sidebar-accent-foreground: #171717;
  --sidebar-border: #e0e0e0;
  --sidebar-ring: #3b82f6; /* Blue for focus/ring */

  /* Custom colors for snow theme */
  --snow-blue-50: #eff6ff;
  --snow-blue-100: #dbeafe;
  --snow-blue-300: #93c5fd;
  --snow-blue-500: #3b82f6;
  --snow-blue-600: #2563eb;
  --snow-blue-700: #1d4ed8;
  --snow-blue-800: #1e40af;
  --snow-green-50: #f0fdf4;
  --snow-green-600: #16a34a;
  --snow-green-700: #15803d;
  --snow-green-800: #14532d;
  --snow-yellow-50: #fefce8;
  --snow-yellow-400: #facc15;
  --snow-yellow-600: #eab308;
  --snow-yellow-700: #a16207;
  --snow-orange-50: #fff7ed;
  --snow-orange-400: #fb923c;
  --snow-orange-600: #ea580c;
  --snow-orange-700: #c2410c;
  --snow-orange-800: #9a3412;
  --snow-red-50: #fef2f2;
  --snow-red-400: #f87171;
  --snow-red-600: #dc2626;
  --snow-red-700: #b91c1c;
  --snow-purple-50: #f5f3ff;
  --snow-purple-600: #9333ea;
  --snow-purple-700: #7e22ce;
  --snow-purple-800: #6b21a8;
  --snow-indigo-50: #eef2ff;
  --snow-indigo-600: #4f46e5;
  --snow-indigo-700: #4338ca;
  --snow-indigo-800: #3730a3;

  /* Chart colors (mimicking shadcn/ui chart colors) */
  --chart-1: 220 70% 50%; /* Blue */
  --chart-2: 160 60% 45%; /* Green */
  --chart-3: 30 80% 55%; /* Orange */
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1.5;
  background-color: var(--background);
  color: var(--foreground);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Main Layout */
.site-wrapper {
  display: flex;
  min-height: 100vh;
  background-color: var(--snow-blue-50); /* Light blue background for the whole app */
  width: 100%; /* Ensure full width */
}

.main-content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem; /* Default padding */
  width: 100%; /* Ensure it takes full available width */
}

@media (min-width: 768px) {
  .main-content-wrapper {
    padding: 1.5rem; /* Larger padding on desktop */
  }
}

/* Sidebar Styling */
.sidebar {
  width: 3rem; /* Collapsed width */
  background-color: var(--sidebar-background);
  color: var(--sidebar-foreground);
  transition: width 0.3s ease-in-out;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  border-right: 1px solid var(--sidebar-border);
}

.sidebar:hover {
  width: 16rem; /* Expanded width on hover */
}

.sidebar-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem;
}

.sidebar-group {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  padding: 0.5rem;
}

.sidebar-group-label {
  display: flex;
  height: 2rem;
  align-items: center;
  border-radius: 0.375rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--sidebar-foreground);
  outline: none;
  transition: margin 0.2s ease-linear, opacity 0.2s ease-linear;
  /* Hide label when collapsed */
  opacity: 0;
  margin-top: -2rem; /* Adjust margin to hide */
}

.sidebar:hover .sidebar-group-label {
  opacity: 1;
  margin-top: 0;
}

.sidebar-group-content {
  width: 100%;
  font-size: 0.875rem;
}

.sidebar-menu {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-direction: column;
  gap: 0.25rem;
  list-style: none; /* Remove bullet points */
}

.sidebar-menu-item {
  position: relative;
}

.sidebar-menu-button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
  border-radius: 0.375rem;
  padding: 0.5rem;
  text-align: left;
  font-size: 0.875rem;
  outline: none;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, padding 0.3s ease-in-out, background-color 0.2s, color
    0.2s;
  background-color: transparent;
  border: none;
  color: var(--sidebar-foreground);
  cursor: pointer;
  white-space: nowrap; /* Prevent text wrapping */
}

.sidebar-menu-button:hover {
  background-color: var(--sidebar-accent);
  color: var(--sidebar-accent-foreground);
}

.sidebar-menu-button.active {
  background-color: var(--sidebar-accent);
  font-weight: 500;
  color: var(--sidebar-accent-foreground);
}

.sidebar-menu-button svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.sidebar-menu-button span {
  /* Hide text when collapsed */
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar:hover .sidebar-menu-button span {
  opacity: 1;
}

/* Tooltip for collapsed sidebar items */
.sidebar-menu-button[title]:hover::after {
  content: attr(title);
  position: absolute;
  left: calc(100% + 0.5rem); /* Position to the right of the icon */
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--popover);
  color: var(--popover-foreground);
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  white-space: nowrap;
  z-index: 20;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.sidebar:not(:hover) .sidebar-menu-button[title]:hover::after {
  opacity: 1;
  visibility: visible;
}

/* Hide text when sidebar is collapsed, but show icon */
.sidebar:not(:hover) .sidebar-menu-button span {
  display: none;
}

/* Main Content Grid */
.dashboard-grid {
  display: grid;
  gap: 1.5rem; /* 24px */
  width: 100%;
  max-width: 100%; /* Ensure full width */
}

@media (min-width: 768px) {
  .dashboard-grid {
    grid-template-columns: 2fr 1fr; /* Two columns on medium screens and up */
  }
}

/* Card Styling */
.card {
  background-color: rgba(255, 255, 255, 0.9); /* White with slight transparency */
  border-radius: 1.5rem; /* More rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  border: none; /* Remove default border */
}

.card-header {
  padding-bottom: 1rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.5rem;
}

.card-content {
  padding-top: 0;
}

/* Input and Button Styling */
.input {
  display: flex;
  height: 2.5rem; /* h-10 */
  width: 100%;
  border-radius: 0.375rem; /* rounded-md */
  border: 1px solid var(--input);
  background-color: var(--background);
  padding: 0.5rem 0.75rem; /* px-3 py-2 */
  font-size: 1rem; /* text-base */
  color: var(--foreground);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.input:focus-visible {
  border-color: var(--ring);
  box-shadow: 0 0 0 2px var(--ring);
}

.button {
  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;
  height: 2.5rem; /* h-10 */
  padding: 0.5rem 1rem; /* px-4 py-2 */
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
  outline: none;
}

.button-default {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
}

.button-default:hover {
  background-color: rgba(var(--primary), 0.9);
}

.button-outline {
  border: 1px solid var(--input);
  background-color: var(--background);
  color: var(--foreground);
}

.button-outline:hover {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.button-icon {
  height: 2.5rem;
  width: 2.5rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Specific Card Styles */
.today-forecast-card .icon-large {
  width: 4rem; /* h-16 w-16 */
  height: 4rem;
  color: var(--snow-blue-500);
}

.today-forecast-card .text-5xl {
  font-size: 3rem; /* Approx 5xl */
  font-weight: 800;
}

.compact-details-grid {
  display: grid;
  gap: 1rem; /* 16px */
}

@media (min-width: 768px) {
  .compact-details-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.additional-details-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .additional-details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .additional-details-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Safety Tip Card */
.safety-tip-card {
  background-color: var(--snow-orange-50);
  border-left: 4px solid var(--snow-orange-400);
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.safety-tip-card .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--snow-orange-600);
}

.safety-tip-card h3 {
  font-weight: bold;
  color: var(--snow-orange-800);
  margin-bottom: 0.25rem;
}

.safety-tip-card p {
  font-size: 0.875rem;
  color: var(--snow-orange-700);
}

/* Chart Container */
.chart-container {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 0.75rem;
  height: 12rem; /* h-48 */
  width: 100%;
}

/* Map Section */
.map-container {
  position: relative;
  width: 100%;
  height: 18.75rem; /* h-[300px] */
  overflow: hidden;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, var(--snow-blue-100), var(--snow-blue-300));
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #737373;
}

.map-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
}

.map-container .map-overlay-text {
  position: absolute;
  z-index: 0; /* Behind buttons and text */
  color: #737373;
}

.map-container .map-buttons {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 10;
}

.map-container .map-buttons .button {
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--snow-blue-600);
  border-radius: 9999px; /* full */
  width: 2rem; /* w-8 */
  height: 2rem; /* h-8 */
}

.map-container .map-buttons .button:hover {
  background-color: #ffffff;
}

.map-container .map-info-text {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 10;
}

/* Table Styling */
.table-container {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.table-header {
  background-color: var(--muted);
}

.table-row {
  border-bottom: 1px solid var(--border);
}

.table-row:last-child {
  border-bottom: none;
}

.table-row:hover {
  background-color: var(--muted);
}

.table-head,
.table-cell {
  padding: 1rem;
  text-align: left;
  vertical-align: middle;
}

.table-head {
  font-weight: 500;
  color: var(--muted-foreground);
  height: 3rem; /* h-12 */
}

.table-cell {
  color: var(--foreground);
}

.table-cell.font-medium {
  font-weight: 500;
}

/* Scroll Area for Hourly Forecast */
.scroll-area {
  height: 18.75rem; /* h-[300px] */
  width: 100%;
  border-radius: 0.375rem;
  border: 1px solid var(--border);
  overflow: hidden; /* Hide default scrollbars */
  position: relative;
}

.scroll-area-viewport {
  height: 100%;
  width: 100%;
  overflow-y: auto; /* Enable vertical scrolling */
  padding-right: 15px; /* Space for scrollbar */
}

/* Custom Scrollbar (basic styling) */
.scroll-area-viewport::-webkit-scrollbar {
  width: 8px;
}

.scroll-area-viewport::-webkit-scrollbar-track {
  background: var(--secondary);
  border-radius: 4px;
}

.scroll-area-viewport::-webkit-scrollbar-thumb {
  background: var(--muted-foreground);
  border-radius: 4px;
}

.scroll-area-viewport::-webkit-scrollbar-thumb:hover {
  background: var(--foreground);
}

/* Current Snow Locations */
.location-card {
  background-color: var(--snow-blue-50);
  padding: 1rem;
  border-radius: 0.5rem;
}

.location-card h3 {
  font-weight: bold;
  color: var(--snow-blue-800);
  margin-bottom: 0.5rem;
}

.location-card p {
  font-size: 0.875rem;
  color: var(--snow-blue-700);
  margin-bottom: 0.25rem;
}

/* Specific color variants for location cards */
.location-card.green {
  background-color: var(--snow-green-50);
}
.location-card.green h3 {
  color: var(--snow-green-800);
}
.location-card.green p {
  color: var(--snow-green-700);
}

.location-card.purple {
  background-color: var(--snow-purple-50);
}
.location-card.purple h3 {
  color: var(--snow-purple-800);
}
.location-card.purple p {
  color: var(--snow-purple-700);
}

.location-card.indigo {
  background-color: var(--snow-indigo-50);
}
.location-card.indigo h3 {
  color: var(--snow-indigo-800);
}
.location-card.indigo p {
  color: var(--snow-indigo-700);
}

.region-summary-card {
  text-align: center;
  padding: 0.75rem;
  background-color: var(--muted);
  border-radius: 0.5rem;
}

.region-summary-card p {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.region-summary-card .text-sm {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.region-summary-card .text-blue {
  color: var(--snow-blue-600);
}
.region-summary-card .text-green {
  color: var(--snow-green-600);
}
.region-summary-card .text-purple {
  color: var(--snow-purple-600);
}

/* Utility classes for flex and grid */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.grid {
  display: grid;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}
.h-96 {
  height: 24rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.p-0 {
  padding: 0;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-2xl {
  border-radius: 1.5rem;
}
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.shadow-inner {
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}
.text-center {
  text-align: center;
}
.text-sm {
  font-size: 0.875rem;
}
.text-xs {
  font-size: 0.75rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-2xl {
  font-size: 1.5rem;
}
.font-bold {
  font-weight: bold;
}
.font-semibold {
  font-weight: 600;
}
.font-medium {
  font-weight: 500;
}
.font-extrabold {
  font-weight: 800;
}
.text-gray-400 {
  color: #9ca3af;
}
.text-gray-500 {
  color: #6b7280;
}
.text-gray-600 {
  color: #4b5563;
}
.text-gray-700 {
  color: #374151;
}
.text-gray-800 {
  color: #1f2937;
}
.text-gray-900 {
  color: #111827;
}
.text-white {
  color: #ffffff;
}
.text-blue-500 {
  color: var(--snow-blue-500);
}
.text-blue-600 {
  color: var(--snow-blue-600);
}
.text-blue-700 {
  color: var(--snow-blue-700);
}
.text-blue-800 {
  color: var(--snow-blue-800);
}
.text-green-600 {
  color: var(--snow-green-600);
}
.text-green-700 {
  color: var(--snow-green-700);
}
.text-green-800 {
  color: var(--snow-green-800);
}
.text-yellow-600 {
  color: var(--snow-yellow-600);
}
.text-yellow-700 {
  color: var(--snow-yellow-700);
}
.text-orange-600 {
  color: var(--snow-orange-600);
}
.text-orange-700 {
  color: var(--snow-orange-700);
}
.text-orange-800 {
  color: var(--snow-orange-800);
}
.text-red-600 {
  color: var(--snow-red-600);
}
.text-red-700 {
  color: var(--snow-red-700);
}
.text-purple-600 {
  color: var(--snow-purple-600);
}
.text-purple-700 {
  color: var(--snow-purple-700);
}
.text-purple-800 {
  color: var(--snow-purple-800);
}
.text-indigo-600 {
  color: var(--snow-indigo-600);
}
.text-indigo-700 {
  color: var(--snow-indigo-700);
}
.text-indigo-800 {
  color: var(--snow-indigo-800);
}
.bg-white {
  background-color: #ffffff;
}
.bg-gray-50 {
  background-color: #f9fafb;
}
.bg-blue-50 {
  background-color: var(--snow-blue-50);
}
.bg-green-50 {
  background-color: var(--snow-green-50);
}
.bg-yellow-50 {
  background-color: var(--snow-yellow-50);
}
.bg-orange-50 {
  background-color: var(--snow-orange-50);
}
.bg-red-50 {
  background-color: var(--snow-red-50);
}
.bg-purple-50 {
  background-color: var(--snow-purple-50);
}
.bg-indigo-50 {
  background-color: var(--snow-indigo-50);
}
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.from-blue-400 {
  --tw-gradient-from: #60a5fa;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0));
}
.to-blue-600 {
  --tw-gradient-to: #2563eb;
}
.from-blue-100 {
  --tw-gradient-from: #dbeafe;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0));
}
.to-blue-300 {
  --tw-gradient-to: #93c5fd;
}
.border-none {
  border: none;
}
.border-l-4 {
  border-left-width: 4px;
}
.border-orange-400 {
  border-color: var(--snow-orange-400);
}
.border-gray-200 {
  border-color: #e5e7eb;
}
.border-blue-300 {
  border-color: var(--snow-blue-300);
}
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.left-3 {
  left: 0.75rem;
}
.left-4 {
  left: 1rem;
}
.top-4 {
  top: 1rem;
}
.right-0 {
  right: 0;
}
.right-4 {
  right: 1rem;
}
.bottom-4 {
  bottom: 1rem;
}
.z-0 {
  z-index: 0;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-auto {
  overflow-x: auto;
}
.animate-spin {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.rotate-90 {
  transform: rotate(90deg);
}
.-rotate-90 {
  transform: rotate(-90deg);
}
.mt-1 {
  margin-top: 0.25rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.min-h-screen {
  min-height: 100vh;
}
.min-h-svh {
  min-height: 100svh;
} /* For modern viewports */
.flex-1 {
  flex: 1 1 0%;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.cursor-pointer {
  cursor: pointer;
}
.hidden {
  display: none;
}
@media (min-width: 768px) {
  .md\:hidden {
    display: none;
  }
  .md\:grid {
    display: grid;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:p-6 {
    padding: 1.5rem;
  }
  .md\:mt-0 {
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}