/**
 * Sistema de Colores Centralizado - Roraima Delivery App
 *
 * Este archivo define todas las variables de color usadas en la aplicación.
 * Modificar estos valores cambiará los colores en toda la app.
 *
 * Uso en vistas:
 *   HTML: class="bg-primary text-white"
 *   Inline: style="background-color: var(--color-primary)"
 */

:root {
  /* ========================================
     COLORES PRIMARIOS (Brand Colors)
     ======================================== */

  /* Indigo - Color principal de la marca */
  --color-primary: #4f46e5;           /* indigo-600 */
  --color-primary-light: #6366f1;     /* indigo-500 */
  --color-primary-dark: #4338ca;      /* indigo-700 */
  --color-primary-hover: #4338ca;     /* indigo-700 */

  /* Verde - Acciones exitosas y carga masiva */
  --color-success: #16a34a;           /* green-600 */
  --color-success-light: #22c55e;     /* green-500 */
  --color-success-dark: #15803d;      /* green-700 */
  --color-success-hover: #15803d;     /* green-700 */


  /* ========================================
     COLORES DE ESTADO (Package Status)
     ======================================== */

  /* Pendiente Retiro - Amarillo */
  --color-status-pending: #eab308;    /* yellow-500 */
  --color-status-pending-bg: #fef3c7; /* yellow-100 */
  --color-status-pending-text: #854d0e; /* yellow-900 */

  /* Bodega – Cian / Azul pasivo */
  --color-status-warehouse: #06b6d4;        /* cyan-500 */
  --color-status-warehouse-bg: #cffafe;     /* cyan-100 */
  --color-status-warehouse-text: #164e63;   /* cyan-900 */


  /* En Camino – Azul / Índigo activo */
  --color-status-transit: #1d4ed8;          /* blue-700 */
  --color-status-transit-bg: #5698ee;       /* blue-100 */
  --color-status-transit-text: #1e3a8a;     /* blue-900 */
  /* Entregado - Verde */
  --color-status-delivered: #22c55e;  /* green-500 */
  --color-status-delivered-bg: #dcfce7; /* green-100 */
  --color-status-delivered-text: #14532d; /* green-900 */

  /* Reprogramado - Violeta Custom */
  --color-status-rescheduled: #5d5179; /* violeta custom */
  --color-status-rescheduled-bg: #e8e4f0; /* violeta claro */
  --color-status-rescheduled-text: #5d5179; /* violeta custom */

  /* Devolución - Naranja */
  --color-status-return: #ea580c;     /* orange-600 */
  --color-status-return-bg: #fed7aa; /* orange-200 */
  --color-status-return-text: #7c2d12; /* orange-900 */

  /* Cancelado - Rojo */
  --color-status-cancelled: #dc2626;  /* red-600 */
  --color-status-cancelled-bg: #fecaca; /* red-200 */
  --color-status-cancelled-text: #7f1d1d; /* red-900 */


  /* ========================================
     COLORES DE ROLES (User Roles)
     ======================================== */

  /* Admin - Purple Custom */
  --color-admin-bg: #4F39F6;          /* purple custom */
  --color-admin-bg-hover: #4230d1;    /* purple darker (hover) */
  --color-admin-bg-active: #3726ac;   /* purple darkest (active) */
  --color-admin-text: #f1f5f9;        /* slate-100 */
  --color-admin-text-muted: #cbd5e1;  /* slate-300 */
  --color-admin-border: #6b5cf9;      /* purple lighter (border) */

  /* Customer - Slate (más suave) */
  --color-customer-bg: #1e293b;       /* slate-800 */
  --color-customer-bg-hover: #334155; /* slate-700 */
  --color-customer-bg-active: #475569; /* slate-600 */
  --color-customer-text: #f1f5f9;     /* slate-100 */
  --color-customer-text-muted: #cbd5e1; /* slate-300 */
  --color-customer-border: #475569;   /* slate-600 */

  /* Driver - Teal */
  --color-driver-bg: #0f766e;         /* teal-700 */
  --color-driver-bg-hover: #0d9488;   /* teal-600 */
  --color-driver-bg-active: #14b8a6;  /* teal-500 */
  --color-driver-text: #f0fdfa;       /* teal-50 */
  --color-driver-text-muted: #99f6e4; /* teal-200 */
  --color-driver-border: #14b8a6;     /* teal-500 */


  /* ========================================
     COLORES DE UI (Interfaz General)
     ======================================== */

  /* Grises */
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;

  /* Fondos */
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f9fafb;      /* gray-50 */
  --color-bg-tertiary: #f3f4f6;       /* gray-100 */

  /* Textos */
  --color-text-primary: #111827;      /* gray-900 */
  --color-text-secondary: #4b5563;    /* gray-600 */
  --color-text-muted: #6b7280;        /* gray-500 */

  /* Bordes */
  --color-border-light: #e5e7eb;      /* gray-200 */
  --color-border-medium: #d1d5db;     /* gray-300 */
  --color-border-dark: #9ca3af;       /* gray-400 */

  /* Alertas y Notificaciones */
  --color-info: #3b82f6;              /* blue-500 */
  --color-info-bg: #dbeafe;           /* blue-100 */
  --color-info-text: #1e3a8a;         /* blue-900 */

  --color-warning: #f59e0b;           /* amber-500 */
  --color-warning-bg: #fef3c7;        /* amber-100 */
  --color-warning-text: #78350f;      /* amber-900 */

  --color-error: #ef4444;             /* red-500 */
  --color-error-bg: #fee2e2;          /* red-100 */
  --color-error-text: #7f1d1d;        /* red-900 */

  --color-success-notification: #10b981; /* green-500 */
  --color-success-notification-bg: #d1fae5; /* green-100 */
  --color-success-notification-text: #065f46; /* green-900 */


  /* ========================================
     COLORES DE BOTONES (Bulk Actions)
     ======================================== */

  /* Aplicar Filtros - Azul Corporativo */
  --color-btn-filter: #183391;        /* azul corporativo */
  --color-btn-filter-hover: #122659;  /* azul corporativo oscuro */

  /* Generar Etiquetas - Indigo */
  --color-btn-labels: #4f46e5;        /* indigo-600 */
  --color-btn-labels-hover: #4338ca;  /* indigo-700 */

  /* Cambiar Estado Masivo - Blue */
  --color-btn-status: #2563eb;        /* blue-600 */
  --color-btn-status-hover: #1d4ed8;  /* blue-700 */

  /* Asignar a Driver - Green */
  --color-btn-assign: #16a34a;        /* green-600 */
  --color-btn-assign-hover: #15803d;  /* green-700 */

  /* Archivar Seleccionados - Amber */
  --color-btn-archive: #2d898b;       /* amber-600 */
  --color-btn-archive-hover: #2d848a; /* amber-700 */

  /* Texto de botones */
  --color-btn-text: #ffffff;          /* white */


  /* ========================================
     COLORES DE SOMBRAS
     ======================================== */

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}


/* ========================================
   CLASES UTILITARIAS PERSONALIZADAS
   ======================================== */

/* Botones con colores de marca */
.btn-primary {
  background-color: var(--color-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: background-color 0.2s;
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
}

.btn-success {
  background-color: var(--color-success);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: background-color 0.2s;
}

.btn-success:hover {
  background-color: var(--color-success-hover);
}

.btn-filter {
  background-color: var(--color-btn-filter);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: background-color 0.2s;
}

.btn-filter:hover {
  background-color: var(--color-btn-filter-hover);
}

/* Texto corporativo - reemplaza text-indigo-600 */
.text-corporate-blue {
  color: var(--color-btn-filter);
}

/* Badges de estado */
.badge-pending {
  background-color: var(--color-status-pending-bg);
  color: var(--color-status-pending-text);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-warehouse {
  background-color: var(--color-status-warehouse-bg);
  color: var(--color-status-warehouse-text);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-transit {
  background-color: var(--color-status-transit-bg);
  color: var(--color-status-transit-text);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-delivered {
  background-color: var(--color-status-delivered-bg);
  color: var(--color-status-delivered-text);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-rescheduled {
  background-color: var(--color-status-rescheduled-bg);
  color: var(--color-status-rescheduled-text);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-return {
  background-color: var(--color-status-return-bg);
  color: var(--color-status-return-text);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-cancelled {
  background-color: var(--color-status-cancelled-bg);
  color: var(--color-status-cancelled-text);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Sidebar por rol */
.sidebar-admin {
  background-color: var(--color-admin-bg);
  color: var(--color-admin-text);
}

.sidebar-customer {
  background-color: var(--color-customer-bg);
  color: var(--color-customer-text);
}

.sidebar-driver {
  background-color: var(--color-driver-bg);
  color: var(--color-driver-text);
}


/* ========================================
  BOTONES DE ACCIONES MASIVAS (Bulk Actions)
  ======================================== */

/* Generar Etiquetas */
.btn-bulk-labels {
  background-color: var(--color-btn-labels);
  color: var(--color-btn-text);
  transition: background-color 0.2s, opacity 0.2s;
}

.btn-bulk-labels:hover:not(:disabled) {
  background-color: var(--color-btn-labels-hover);
}

.btn-bulk-labels:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Cambiar Estado Masivo */
.btn-bulk-status {
  background-color: var(--color-btn-status);
  color: var(--color-btn-text);
  transition: background-color 0.2s, opacity 0.2s;
}

.btn-bulk-status:hover:not(:disabled) {
  background-color: var(--color-btn-status-hover);
}

.btn-bulk-status:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Asignar a Driver */
.btn-bulk-assign {
  background-color: var(--color-btn-assign);
  color: var(--color-btn-text);
  transition: background-color 0.2s, opacity 0.2s;
}

.btn-bulk-assign:hover:not(:disabled) {
  background-color: var(--color-btn-assign-hover);
}

.btn-bulk-assign:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Archivar Seleccionados */
.btn-bulk-archive {
  background-color: var(--color-btn-archive);
  color: var(--color-btn-text);
  transition: background-color 0.2s, opacity 0.2s;
}

.btn-bulk-archive:hover:not(:disabled) {
  background-color: var(--color-btn-archive-hover);
}

.btn-bulk-archive:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Descargar CSV */
.btn-bulk-csv {
  background-color: var(--color-status-warehouse-text);
  color: #ffffff;
  transition: background-color 0.2s, opacity 0.2s;
}

.btn-bulk-csv:hover:not(:disabled) {
  background-color: #0e3a4a;
}

.btn-bulk-csv:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@import "tailwindcss";

/* Turbo Progress Bar - Personalización */
.turbo-progress-bar {
  height: 2px !important;
  background: linear-gradient(to right, #3b82f6, #60a5fa, #93c5fd) !important;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5) !important;
  transition: opacity 0.3s ease-in-out !important;
}

/* Animaciones personalizadas para notificaciones MLB */
@keyframes slideInFromTop {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideOutToTop {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

.animate-slide-in {
  animation: slideInFromTop 0.3s ease-out forwards;
}

.animate-slide-out {
  animation: slideOutToTop 0.3s ease-in forwards;
}
/* Login Page Styles - RutiService */
/* Split-screen design with corporate blue theme */

:root {
  /* Colores corporativos de la aplicación */
  --corporate-blue: #183391;
  --corporate-blue-dark: #122659;
  --corporate-indigo: #4f46e5;
  --corporate-blue-light: #2563eb;
  --soft-white: #fefefe;
}

* {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

body {
  overflow: hidden;
}

.login-container {
  height: 100vh;
  background: linear-gradient(135deg, var(--corporate-blue) 0%, var(--corporate-blue-dark) 50%, var(--corporate-indigo) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Animated gradient blobs for background atmosphere */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.8) 0%, rgba(79, 70, 229, 0.2) 100%);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.6) 0%, rgba(37, 99, 235, 0.1) 100%);
  bottom: -15%;
  right: 10%;
  animation-delay: -7s;
}

.blob-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(24, 51, 145, 0.5) 0%, rgba(24, 51, 145, 0.1) 100%);
  top: 30%;
  right: 20%;
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 30px) scale(0.9);
  }
}

/* Main card container - ancho ajustado, altura aumentada */
.login-card {
  background: var(--soft-white);
  border-radius: 28px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3), 0 20px 40px rgba(0, 0, 0, 0.2);
  max-width: 1141px;
  width: 100%;
  max-height: 95vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
  animation: cardEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Form section (left side) */
.form-section {
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background: var(--soft-white);
  margin: 0;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Visual section (right side) */
.visual-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideInRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
  border-top-right-radius: 28px;
  border-bottom-right-radius: 28px;
  margin: 0;
  padding: 0;
  background: #f3f4f6;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Visual decorative elements */
.visual-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.visual-blob-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.6) 0%, rgba(79, 70, 229, 0) 70%);
  top: -15%;
  right: -10%;
  animation: floatVisual 15s ease-in-out infinite;
}

.visual-blob-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(24, 51, 145, 0.8) 0%, rgba(24, 51, 145, 0) 70%);
  bottom: -20%;
  left: -5%;
  animation: floatVisual 18s ease-in-out infinite reverse;
}

@keyframes floatVisual {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(20px, -30px) rotate(5deg);
  }
}

/* Welcome section */
.welcome-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.logo-container {
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: iconBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

.logo-container img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

@keyframes iconBounce {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }
  50% {
    transform: scale(1.1) rotate(10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.welcome-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.375rem;
  letter-spacing: -0.02em;
}

.welcome-subtitle {
  font-size: 0.8125rem;
  color: #6b7280;
  font-weight: 400;
}

/* Form inputs */
.input-group {
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.input-group:nth-child(1) { animation-delay: 0.5s; }
.input-group:nth-child(2) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.input-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #9ca3af;
  pointer-events: none;
  transition: color 0.2s ease;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 11px;
  font-size: 0.875rem;
  color: #111827;
  background: #fafafa;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 400;
}

.form-input::placeholder {
  color: #d1d5db;
}

.form-input:focus {
  outline: none;
  border-color: var(--corporate-blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(24, 51, 145, 0.1);
}

.form-input:focus ~ .input-icon {
  color: var(--corporate-blue);
}

/* Remember me checkbox */
.remember-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  animation: fadeInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s both;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-checkbox {
  width: 17px;
  height: 17px;
  border-radius: 4px;
  border: 2px solid #d1d5db;
  cursor: pointer;
  transition: all 0.2s ease;
  accent-color: var(--corporate-blue);
}

.form-checkbox:checked {
  background-color: var(--corporate-blue);
  border-color: var(--corporate-blue);
}

.checkbox-label {
  font-size: 0.8125rem;
  color: #6b7280;
  cursor: pointer;
  user-select: none;
}

/* Submit button */
.submit-button {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--corporate-blue) 0%, var(--corporate-indigo) 100%);
  color: white;
  border: none;
  border-radius: 11px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 20px rgba(24, 51, 145, 0.3);
  animation: fadeInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both;
  position: relative;
  overflow: hidden;
}

.submit-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.submit-button:hover::before {
  left: 100%;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(24, 51, 145, 0.4);
}

.submit-button:active {
  transform: translateY(0);
}

/* Footer */
.form-footer {
  text-align: center;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
  animation: fadeInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s both;
}

/* Responsive */
@media (max-width: 768px) {
  .login-card {
    grid-template-columns: 1fr;
    max-width: 420px;
    max-height: none;
  }

  .visual-section {
    display: none;
  }

  .form-section {
    padding: 2rem 1.75rem;
  }

  .welcome-title {
    font-size: 1.5rem;
  }

  .blob {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .login-card {
    max-width: 1014px;
  }
}

/* Error messages styling */
.error-messages {
  background: #fef2f2;
  border: 2px solid #fecaca;
  border-radius: 11px;
  padding: 0.875rem;
  margin-bottom: 1.25rem;
  animation: shake 0.5s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-10px); }
  75% { transform: translateX(10px); }
}

.error-messages h2 {
  color: #991b1b;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.error-messages ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.error-messages li {
  color: #dc2626;
  font-size: 0.75rem;
  padding: 0.25rem 0;
}

/* Decorative circles in visual section */
.visual-pattern {
  position: relative;
  z-index: 5;
  text-align: center;
  color: white;
  opacity: 0.2;
}

.visual-pattern svg {
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.pagy-nav {
  display: inline-flex;
  border-radius: 0.375rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.pagy-nav .page {
  position: relative;
  display: inline-flex;
  align-items: center;
  border: 1px solid #d1d5db;
  background-color: white;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.pagy-nav .page:hover {
  background-color: #f9fafb;
}

.pagy-nav .page.active {
  z-index: 10;
  background-color: #4f46e5;
  border-color: #4f46e5;
  color: white;
}

.pagy-nav .page.disabled {
  background-color: #f3f4f6;
  color: #9ca3af;
  pointer-events: none;
}

.pagy-nav .page:not(:last-child) {
  margin-right: -1px;
}

.pagy-nav .page:first-child {
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.pagy-nav .page:last-child {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *



 */
