:root {
  --bg-main: #090d16;
  --bg-card: rgba(17, 24, 39, 0.7);
  --bg-card-hover: rgba(31, 41, 55, 0.85);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(99, 102, 241, 0.4);
  
  --primary: #6366f1;
  --primary-hover: #4f46e5;
  --primary-glow: rgba(99, 102, 241, 0.25);
  
  --success: #10b981;
  --success-glow: rgba(16, 185, 129, 0.2);
  --error: #f43f5e;
  --error-glow: rgba(244, 63, 94, 0.2);
  --warning: #f59e0b;
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-inverse: #090d16;
  
  --font-title: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 16px;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.08) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(16, 185, 129, 0.05) 0px, transparent 50%);
  color: var(--text-main);
  font-family: var(--font-body);
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Glassmorphism Container */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  transition: var(--transition);
}

.glass-panel:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
}

/* Layout */
.container {
  max-width: 1800px;
  width: 98%;
  margin: 0 auto;
  padding: 1.5rem 1rem;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), #818cf8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: white;
  box-shadow: 0 0 15px var(--primary-glow);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(to right, #ffffff, #c7d2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Utility classes */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  outline: none;
  text-decoration: none;
}

.btn:disabled, .btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(0.8);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #4f46e5);
  color: white;
  box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #4f46e5, #4338ca);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-success {
  background: linear-gradient(135deg, var(--success), #059669);
  color: white;
  box-shadow: 0 4px 14px var(--success-glow);
}

.btn-success:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

.btn-info {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.2);
}

.btn-info:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.btn-danger {
  background: linear-gradient(135deg, var(--error), #e11d48);
  color: white;
  box-shadow: 0 4px 14px var(--error-glow);
}

.btn-danger:hover {
  background: linear-gradient(135deg, #e11d48, #be123c);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 63, 94, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: 8px;
}

/* Forms & Inputs */
.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-input {
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--primary);
  background: rgba(17, 24, 39, 0.9);
  box-shadow: 0 0 10px var(--primary-glow);
  outline: none;
}

/* Welcome Page (Index.html) */
.gateway-wrapper {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.gateway-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 800px;
  margin-top: 2.5rem;
}

.gateway-card {
  padding: 2.5rem 2rem;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.gateway-card .icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.1);
  border: 2px dashed var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 8px;
  transition: var(--transition);
}

.gateway-card:hover .icon-circle {
  background: var(--primary);
  color: white;
  box-shadow: 0 0 20px var(--primary-glow);
  transform: rotate(10deg) scale(1.1);
}

/* COMEDOR PORTAL (comedor.html) */
.comedor-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 900px) {
  .comedor-layout {
    grid-template-columns: 1fr;
  }
}

.comedor-section {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.employee-card {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(16, 185, 129, 0.02));
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  animation: fadeIn 0.4s ease;
}

.employee-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}


/* ADMIN PANEL (admin.html) */
.admin-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .admin-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.admin-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-title);
  font-weight: 600;
  transition: var(--transition);
}

.sidebar-link.active, .sidebar-link:hover {
  color: white;
  background: rgba(99, 102, 241, 0.15);
  border-left: 4px solid var(--primary);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 3rem;
}

.stat-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.15);
  box-shadow: 0 10px 30px -10px rgba(99, 102, 241, 0.15);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
}

.stat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
}

.stat-value {
  font-size: 2.25rem;
  font-weight: 800;
  color: white;
  font-family: var(--font-title);
  letter-spacing: -0.02em;
}

/* Tables and Records */
.filter-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  align-items: end;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
}

.filter-bar .form-group {
  margin-bottom: 0;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: 12px;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.custom-table th {
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem 1.25rem;
  font-family: var(--font-title);
  color: white;
  font-weight: 600;
  border-bottom: 1px solid var(--border-color);
}

.custom-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-main);
}

.custom-table tbody tr {
  transition: var(--transition);
}

.custom-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge-success {
  background: var(--success-glow);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-danger {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modals */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 13, 22, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  transform: scale(0.9);
  transition: var(--transition);
}

.modal-backdrop.show .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: white;
  transform: scale(1.1);
}



/* Toast Alerts - Floating at the top to prevent keyboard overlap on mobile devices */
/* LOGO IMAGE */
.company-logo-img {
  max-width: 220px;
  height: 54px;
  border-radius: 8px;
  object-fit: contain;
}

.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: calc(100vw - 48px);
}

@media (max-width: 768px) {
  .toast-container {
    top: 16px;
    right: 16px;
    left: 16px;
    align-items: center;
  }
  .toast {
    width: 100%;
    min-width: 0;
  }
}

.toast {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  background: #111827;
  border-left: 4px solid var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
  animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.success {
  border-left-color: var(--success);
}

.toast.error {
  border-left-color: var(--error);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ==========================================================================
   OPTIMIZACIONES PARA DISPOSITIVOS MÓVILES (RESPONSIVE MASTERPIECE)
   ========================================================================== */

@media (max-width: 768px) {
  /* Contenedor General */
  .container {
    padding: 1rem 0.75rem;
  }
  
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
  }
  
  header .btn {
    width: 100%;
    justify-content: center;
  }

  /* Portal del Comedor */
  .comedor-section {
    padding: 1.25rem;
    gap: 1.25rem;
  }
  

  /* Portal de Administración */
  .admin-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1rem;
  }
  
  /* Sidebar convertida en barra de pestañas superior estilo iOS */
  .admin-sidebar {
    flex-direction: row;
    justify-content: space-around;
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    padding: 6px;
    border-radius: 12px;
    position: sticky;
    top: 10px;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }
  
  .sidebar-link {
    flex: 1;
    justify-content: center;
    padding: 0.6rem 0.5rem;
    font-size: 0.85rem;
    border-left: none !important;
    border-bottom: 2px solid transparent;
    border-radius: 8px;
    gap: 6px;
  }
  
  .sidebar-link.active {
    background: rgba(99, 102, 241, 0.1);
    color: white;
    border-bottom-color: var(--primary);
  }

  /* Tarjetas de Estadísticas en Cuadrícula 2x2 para Ahorrar Espacio */
  .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 1.25rem;
  }
  
  .stat-card {
    padding: 1rem;
    gap: 6px;
  }
  
  .stat-value {
    font-size: 1.5rem;
  }
  
  .stat-icon {
    width: 28px;
    height: 28px;
    font-size: 0.95rem;
  }

  /* Panel de Filtros en Administración */
  .filter-bar {
    padding: 1rem;
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-bar .form-group {
    margin-bottom: 0;
  }
  
  .filter-bar .btn {
    width: 100%;
    margin-top: 4px;
  }

  /* Ajustes de Modales en Móvil */
  .modal-content {
    width: 95%;
    padding: 1.25rem;
    margin: 10px;
  }
  
  .modal-header {
    margin-bottom: 1rem;
  }
  
  .saved-signature-img {
    height: 130px;
  }
}

@media (max-width: 480px) {
  /* Gateway Selector (index.html) en teléfonos pequeños */
  .logo-icon[style*="width: 64px"] {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.5rem !important;
  }
  
  h1[style*="font-size: 2.8rem"] {
    font-size: 2.1rem !important;
  }
  
  h2[style*="font-size: 1.25rem"] {
    font-size: 1.05rem !important;
  }
  
  .gateway-cards {
    margin-top: 1.5rem;
    gap: 16px;
  }
  
  .gateway-card {
    padding: 1.75rem 1.25rem;
  }
  
  .gateway-card .icon-circle {
    width: 64px;
    height: 64px;
    font-size: 2rem;
  }

  /* Tarjetas de Estadísticas en Cuadrícula 2x2 */
  .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-header {
    font-size: 0.75rem;
  }
  
  .stat-value {
    font-size: 1.35rem;
  }

  /* OPTIMIZACIONES EXTREMAS CONTRA DESBORDAMIENTO EN PORTAL COMEDOR */
  .container {
    padding: 0.5rem;
  }
  .comedor-section {
    padding: 1rem;
    gap: 1rem;
    border-radius: 12px;
  }
  .logo-text {
    font-size: 1.3rem;
  }
  header {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    gap: 8px;
  }
  .numpad-grid {
    gap: 6px;
    margin-top: 6px;
  }
  .numpad-btn {
    padding: 0.75rem;
    font-size: 1.2rem;
    border-radius: 8px;
  }
  .canvas-wrapper {
    height: 130px;
  }
  .pin-display-wrapper {
    margin: 0.5rem 0;
    gap: 10px;
  }
  h2 {
    font-size: 1.2rem !important;
  }
}

/* --- TOGGLE SWITCH --- */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 28px;
  transition: var(--transition);
}
.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--primary);
  border-color: var(--primary);
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

/* --- NUMPAD --- */
.numpad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 280px;
  margin: 0 auto;
}
.numpad-btn {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-title);
  padding: 16px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.numpad-btn:hover {
  background: rgba(99,102,241,0.25);
  border-color: var(--primary);
  transform: scale(1.04);
}
.numpad-btn:active { transform: scale(0.96); }
.numpad-btn.numpad-clear { color: #f43f5e; }
.numpad-btn.numpad-ok {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: none;
  color: white;
  font-size: 1rem;
}

/* --- PIN DOTS --- */
.pin-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: transparent;
  transition: var(--transition);
}
.pin-dot.filled {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 12px rgba(99,102,241,0.5);
}

/* --- BTN WARNING --- */
.btn-warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
  border: none;
}
.btn-warning:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  transform: translateY(-1px);
}

/* --- RESPONSIVE GENERAL --- */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
  }
  
  .logo-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .filter-bar {
    grid-template-columns: 1fr;
  }
  
  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .custom-table th, .custom-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
  }

  .modal-content {
    width: 95%;
    padding: 1.5rem;
    margin: 10px auto;
  }

  .form-group > div {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1.logo-text {
    font-size: 1.25rem;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  #admin-main-panel header > div:last-child {
    flex-direction: column;
    width: 100%;
  }
}

/* =========================================================
   BUSCADOR DE EMPLEADO - RESPONSIVE
   Mobile: input arriba, botones abajo en fila
   Desktop: todo en una sola fila, botones delgados
   ========================================================= */

/* MÓVIL (por defecto) */
.employee-search-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.employee-search-input {
  width: 100%;
}

.employee-search-btns {
  display: flex;
  gap: 10px;
}

.employee-search-btns .btn {
  padding: 12px 8px;
  font-size: 0.95rem;
}

/* DESKTOP */
@media (min-width: 901px) {
  .employee-search-row {
    flex-direction: row;
    align-items: stretch;
    gap: 8px;
  }

  .employee-search-input {
    flex: 1;
  }

  .employee-search-btns {
    flex-shrink: 0;
    gap: 6px;
  }

  .employee-search-btns .btn {
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .employee-search-btns #btn-clear-employee {
    width: 95px;
  }

  .employee-search-btns #btn-search-employee {
    width: 105px;
    flex: unset;
  }
}
