@charset "UTF-8";
/* Import all styles first - @import must come before other statements */
/* Light mode styles */
:root {
  --bg-color: #ffffff;
  --text-color: #333333;
  --text-secondary: #4b5563; /* Darker gray for better contrast in light mode */
  --card-bg: #ffffff;
  --border-color: #e5e7eb;
  --highlight-bg: #f3f4f6;
  --highlight-text: #1f2937;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
/* Dark mode CSS variables */
.dark {
  --bg-color: #1f2937;
  --text-color: #f3f4f6;
  --text-secondary: #e5e7eb; /* Much lighter gray for better contrast in dark mode */
  --card-bg: #111827;
  --border-color: #374151;
  --highlight-bg: #374151;
  --highlight-text: #f9fafb;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}
/* Dark mode styles for the EventEditor component */
.dark .bg-white {
  background-color: #ffffff;
  background-color: var(--card-bg);
}
.dark .border {
  border-color: #e5e7eb;
  border-color: var(--border-color);
}
.dark .text-gray-600,
.dark .text-gray-700,
.dark .text-gray-900 {
  color: #333333;
  color: var(--text-color);
}
.dark .bg-gray-50 {
  background-color: #f3f4f6;
  background-color: var(--highlight-bg);
}
.dark .shadow-lg {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
}
/* Theme transition */
html,
html.dark,
body,
.bg-white,
.border,
.text-gray-600,
.text-gray-700,
.text-gray-900,
.bg-gray-50,
.shadow-lg {
  transition: all 0.3s ease;
}
/**
 * Shared styles for the spreadsheet components
 */
/* CSS Variables for theme colors */
:root {
  /* Base colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-tertiary: #f3f4f6;
  --text-primary: #111827;
  --text-secondary: #374151;
  --text-tertiary: #6b7280;
  --border-color: #e5e7eb;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --input-focus-shadow: rgba(59, 130, 246, 0.5);

  /* Status colors - consistent in both themes */
  --color-success-bg: #d1fae5;
  --color-success-text: #065f46;
  --color-success-border: #10b981;
  --color-warning-bg: #fef3c7;
  --color-warning-text: #92400e;
  --color-warning-border: #f59e0b;
  --color-danger-bg: #fee2e2;
  --color-danger-text: #991b1b;
  --color-danger-border: #ef4444;
  --color-info-bg: #dbeafe;
  --color-info-text: #1e40af;
  --color-info-border: #3b82f6;
}
/* Dark mode variables */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: #242424;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2c2c2c;
    --text-primary: #f9fafb;
    --text-secondary: #e5e7eb;
    --text-tertiary: #9ca3af;
    --border-color: #4b4b4b;
    --shadow-color: rgba(0, 0, 0, 0.5);
    --input-focus-shadow: rgba(59, 130, 246, 0.5);
  }
}
/* Base container */
.spreadsheet-container {
  max-width: 1200px;
  margin: 1rem auto;
  padding: 0 0.5rem;
}
/* Panel styling */
.panel {
  margin-bottom: 1rem;
  overflow: hidden;
}
.panel-header {
  width: 100%;
  padding: 1rem;
  text-align: left;
  background-color: #fff;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid #e5e7eb;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* ✅ AFTER - Fixed styles */
.panel-header:hover {
  color: #374151;
  color: var(--text-secondary);  /* #374151 - proper gray */
}
html .panel-header:hover span {
  color: #374151;
  color: var(--text-secondary);  /* Consistent gray */
}
.panel-header:hover .section-title {
  color: #374151;
  color: var(--text-secondary);  /* Consistent gray */
  text-shadow: none;  /* Removed unnecessary shadow */
}
.panel-content {
  padding: 1rem;
}
/* Typography */
.section-title {
  font-weight: 700;
  color: #374151;
  color: var(--text-secondary);
}
/* Add hover styles for section titles */
.panel-header:hover .section-title {
  color: #ec1c24;
  color: var(--text-primary);
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
}
/* Button styling */
.btn {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 150ms ease;
}
.btn-primary {
  background-color: #3b82f6;
  color: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.btn-primary:hover {
  background-color: #2563eb;
}
.btn-danger {
  background-color: #ef4444;
  color: #ffffff;
}
.btn-danger:hover {
  background-color: #dc2626;
}
.text-label {
  font-weight: 500;
  color: #374151;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}
.input-field {
  width: 100%;
  max-width: 300px;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e5e7eb;
  border: 1px solid var(--border-color);
  color: #374151;
  background-color: #fff;
}
.input-field:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 0 2px var(--input-focus-shadow);
}
.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.btn {
  padding: 0.5rem 1rem;
  transition-property: color, background-color;
  transition-duration: 200ms;
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 0 2px var(--input-focus-shadow);
}
.btn-primary {
  background-color: #3b82f6;
  color: #ffffff;
}
.btn-primary:hover {
  background-color: #2563eb;
}
.btn-danger {
  background-color: #ef4444;
  color: #ffffff;
}
.btn-danger:hover {
  background-color: #dc2626;
}
.btn-success {
  background-color: #10b981;
  color: #ffffff;
}
.btn-success:hover {
  background-color: #059669;
}
.card {
  background-color: #ec1c24;
  background-color: var(--bg-primary);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 0 var(--shadow-color), 0 1px 2px 0 var(--shadow-color);
  padding: 1rem;
}
.grid-form {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 1rem;
  gap: 1rem;
}
@media (min-width: 640px) {
  .grid-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .grid-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.flower-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
  border-bottom: 1px solid #e5e7eb;
  border-bottom: 1px solid var(--border-color);
}
.flower-item:last-child {
  border-bottom: 0;
}
.badge {
  padding: 0 0.5rem;
  line-height: 1.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}
.badge-success {
  background-color: #d1fae5;
  background-color: var(--color-success-bg);
  color: #065f46;
  color: var(--color-success-text);
  border: 1px solid #10b981;
  border: 1px solid var(--color-success-border);
}
.badge-warning {
  background-color: #fef3c7;
  background-color: var(--color-warning-bg);
  color: #92400e;
  color: var(--color-warning-text);
  border: 1px solid #f59e0b;
  border: 1px solid var(--color-warning-border);
}
.badge-danger {
  background-color: #fee2e2;
  background-color: var(--color-danger-bg);
  color: #991b1b;
  color: var(--color-danger-text);
  border: 1px solid #ef4444;
  border: 1px solid var(--color-danger-border);
}
.table-container {
  overflow-x: auto;
}
.spreadsheet-table {
  min-width: 100%;
  border: 1px solid #e5e7eb;
  border: 1px solid var(--border-color);
}
.spreadsheet-table th {
  padding: 0.5rem 1rem;
  text-align: left;
  background-color: #fff;
  background-color: var(--bg-secondary);
  color: #374151;
  color: var(--text-secondary);
  font-weight: 500;
  border-bottom: 1px solid #e5e7eb;
  border-bottom: 1px solid var(--border-color);
}
.spreadsheet-table td {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  border-bottom: 1px solid var(--border-color);
  min-height: 60px;
  color: #ec1c24;
  color: var(--text-primary);
}
.invalid-feedback {
  font-size: 0.875rem;
  color: #dc2626;
  margin-top: 0.25rem;
}
.form-error {
  border-color: #ef4444;
}
.form-error:focus {
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.5);
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}
.modal-content {
  background-color: #fff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 25px -5px var(--shadow-color), 0 10px 10px -5px var(--shadow-color);
  width: 100%;
  max-width: 32rem;
  margin-left: 1rem;
  margin-right: 1rem;
  z-index: 50;
  color: #000;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}
.modal-header {
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
  border-bottom: 1px solid var(--border-color);
}
.modal-body {
  padding: 1rem;
}
.modal-footer {
  padding: 1rem;
  border-top: 1px solid #e5e7eb;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}
.flower-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 0.5rem;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .flower-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .flower-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.arrangement-card {
  border: 1px solid #e5e7eb;
  border: 1px solid var(--border-color);
  overflow: hidden;
  margin-bottom: 1rem;
}
.arrangement-header {
  background-color: #fff;
  background-color: var(--bg-secondary);
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.arrangement-body {
  padding: 1rem;
}
.alert {
  padding: 1rem;
  margin-bottom: 1rem;
}
.alert-info {
  background-color: #dbeafe;
  color: #1e40af;
}
.alert-warning {
  background-color: #fef3c7;
  color: #92400e;
}
.alert-error {
  background-color: #fee2e2;
  color: #991b1b;
}
.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.spinner {
  width: 1.5rem;
  height: 1.5rem;
  border: 4px solid #3b82f6;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Events Index Page Styles */
/* Status Filter Dropdown Styling */
#status-filter-dropdown {
  max-height: 300px;
  overflow-y: auto;
}
#status-filter-dropdown label {
  transition: background-color 0.2s ease;
}
#status-filter-dropdown label:hover {
  background-color: #f9fafb;
}
#status-filter-toggle {
  transition: all 0.2s ease;
}
#status-filter-toggle:hover {
  background-color: #f9fafb;
  border-color: #d1d5db;
}
/* Checkbox styling */
#status-filter-dropdown input[type="checkbox"] {
  accent-color: #3b82f6;
}
/* Force sharp corners for form elements */
#searchInput,
select[name="time_filter"] {
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
}
/* Force sharp corners for buttons */
#status-filter-toggle {
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
}
/* Force sharp corners for dropdowns */
#status-filter-dropdown {
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
}
/* Sorting controls styling */
#sort-by-select,
#sort-direction-btn {
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
}
#sort-direction-btn:hover {
  background-color: #f9fafb;
  border-color: #d1d5db;
}
/* Materials Index Page Styles */
/* Force sharp corners for form elements */
#material-search-input {
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
}
/* Force sharp corners for buttons */
#openNewMaterialModal {
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
}
/* Flowers Index Page Styles */
.search-input, .create-button {
  border-radius: 0 !important;
}
.create-button {
  border-radius: 0 !important;
}
/* Clients Index Page Styles */
/* Force sharp corners for form elements */
#client-search-input {
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
}
/* Force sharp corners for buttons */
#openNewClientModal {
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
}
/* Hire Items Index Page Styles */
/* Force sharp corners for form elements */
#hire-item-search-input {
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
}
/* Force sharp corners for buttons */
#openNewHireItemModal {
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
}
/* Suppliers Index Page Styles */
/* Force sharp corners for form elements */
#supplier-search-input {
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
}
/* Force sharp corners for buttons */
#openNewSupplierModal {
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
}
@tailwind base;
@tailwind components;
@tailwind utilities;
/*
 * Jumpstart Pro default styles
 * Remove these if you'd like to use TailwindUI which expects a clean slate
*/
:root.dark,
.dark {
  /* Tells browser to use dark mode scroll bars, etc */
  --csstools-color-scheme--light:  ;
  color-scheme: dark;

  /*Primary*/
  --bg-primary: #ec1c24;
  --bg-primary-hover: #f16222;
  --text-on-primary: #fff;
  --border-primary: #f16222;
  --border-primary-hover: #f16222;
  --text-primary: #ec1c24;
  --text-primary-hover: #f16222;

  /*Secondary*/
  --bg-secondary: #0f172a;
  --text-on-secondary: #f8fafc;
  --bg-secondary-hover: #1e293b;
  --text-on-secondary-hover: #f8fafc;
  --border-secondary: #334155;

  /*Danger*/
  --bg-danger: #991b1b;
  --bg-danger-hover: #b91c1c;
  --text-on-danger: #fff;
  --border-danger: #dc2626;
  --border-danger-focus: #dc2626;
  --text-danger: #f87171;
  --bg-danger-secondary: #450a0a;
  --text-on-danger-secondary: #fecaca;
  --icon-on-danger-secondary: #f87171;

  /*Success*/
  --bg-success: #166534;
  --bg-success-hover: #15803d;
  --text-on-success: #fff;
  --border-success: #4ade80;
  --border-success-focus: #15803d;
  --text-success: #86efac;
  --bg-success-secondary: #052e16;
  --text-on-success-secondary: #dcfce7;
  --icon-on-success-secondary: #4ade80;

  /*Info*/
  --bg-info-secondary: #172554;
  --text-on-info-secondary: #dbeafe;
  --icon-on-info-secondary: #93c5fd;

  /*Warning*/
  --bg-warning-secondary: #451a03;
  --text-on-warning-secondary: #fef3c7;
  --icon-on-warning-secondary: #f59e0b;

  /*Accent*/
  --bg-accent: #2883c4;
  --text-on-accent: #fff;
  --border-accent: #2883c4;
  --text-accent: #2883c4;

  /*Light*/
  --bg-light: #e2e8f0;
  --bg-light-hover: #cbd5e1;
  --text-on-light: #0f172a;
  --text-on-light-outline: #f1f5f9;
  --border-light: #cbd5e1;

  /*Dark*/
  --bg-dark: #020617;
  --bg-dark-secondary: #94a3b8;
  --bg-dark-hover: #0f172a;
  --text-on-dark: #fff;
  --text-on-dark-outline: #e2e8f0;
  --border-dark: #334155;
  --border-dark-focus: #64748b;

  /*Disabled*/
  --bg-disabled: #475569;
  --bg-disabled-selected: #334155;
  --text-on-disabled-selected: #e2e8f0;
  --border-disabled: #64748b;
  --bg-disabled-secondary: #1e293b;
  --icon-disabled: #94a3b8;

  /*Base*/
  --base-text: #fff;
  --base-text-secondary: #e5e7eb;
  --base-text-tertiary: #9ca3af;
  --base-text-disabled: #4b5563;
  --base-icon: #2883c4;
  --base-bg-backdrop: #050707;
  --base-bg-highest: #050707;
  --base-bg-high: #1f2937;
  --base-bg-base: #111827;
  --base-bg-low: #050707;
  --base-bg-lowest: #050707;
  --base-border-primary: #2883c4;
  --base-border-secondary: #f6a081;
  --base-border-tertiary: #4b5563;
  --base-border-focus: #ec1c24;
  --base-bg-selected: #ec1c24;
  --base-bg-hover: #450a0a;
  --base-bg-tooltip: #374151;
  --base-text-on-tooltip: #f9fafb;

  /* Background */
  background-color: #050707;
  background-color: var(--base-bg-low);
}
:root.juicy,
.juicy {
  /*Primary*/
  --bg-primary: #4338ca;
  --bg-primary-hover: #4f46e5;
  --text-on-primary: #f8fafc;
  --border-primary: #4f46e5;
  --border-primary-hover: #6366f1;
  --text-primary: #4338ca;
  --text-primary-hover: #4f46e5;

  /*Secondary*/
  --bg-secondary: #2dd4bf;
  --text-on-secondary: #134e4a;
  --bg-secondary-hover: #5eead4;
  --text-on-secondary-hover: #1e293b;
  --border-secondary: #5eead4;

  /*Danger*/
  --bg-danger: #9f1239;
  --bg-danger-hover: #e11d48;
  --text-on-danger: #fff;
  --border-danger: #f43f5e;
  --border-danger-focus: #f43f5e;
  --text-danger: #be123c;
  --bg-danger-secondary: #fff1f2;
  --text-on-danger-secondary: #be123c;
  --icon-on-danger-secondary: #e11d48;

  /*Success*/
  --bg-success: #065f46;
  --bg-success-hover: #047857;
  --text-on-success: #fff;
  --border-success: #059669;
  --border-success-focus: #10b981;
  --text-success: #065f46;
  --bg-success-secondary: #ecfdf5;
  --text-on-success-secondary: #047857;
  --icon-on-success-secondary: #059669;

  /*Info*/
  --bg-info-secondary: #c7d2fe;
  --text-on-info-secondary: #3730a3;
  --icon-on-info-secondary: #4f46e5;

  /*Warning*/
  --bg-warning-secondary: #fef3c7;
  --text-on-warning-secondary: #92400e;
  --icon-on-warning-secondary: #d97706;

  /*Accent*/
  --bg-accent: #bef264;
  --text-on-accent: #334155;
  --border-accent: #84cc16;
  --text-accent: #4d7c0f;

  /*Light*/
  --bg-light: #f8fafc;
  --bg-light-hover: #f1f5f9;
  --text-on-light: #1e3a8a;
  --text-on-light-outline: #1e3a8a;
  --border-light: #e2e8f0;

  /*Dark*/
  --bg-dark: #1e1b4b;
  --bg-dark-secondary: #6366f1;
  --bg-dark-hover: #312e81;
  --text-on-dark: #eef2ff;
  --text-on-dark-outline: #312e81;
  --border-dark: #4338ca;
  --border-dark-focus: #6366f1;

  /*Disabled*/
  --bg-disabled: #e2e8f0;
  --bg-disabled-selected: #94a3b8;
  --text-on-disabled-selected: #e2e8f0;
  --border-disabled: #cbd5e1;
  --bg-disabled-secondary: #cbd5e1;
  --icon-disabled: #94a3b8;

  /*Base*/
  --base-text: #1e293b;
  --base-text-secondary: #172554;
  --base-text-tertiary: #475569;
  --base-text-disabled: #94a3b8;
  --base-icon: #3730a3;
  --base-bg-backdrop: #1e1b4b;
  --base-bg-highest: #38bdf8;
  --base-bg-high: #7dd3fc;
  --base-bg-base: #bae6fd;
  --base-bg-low: #e0f2fe;
  --base-bg-lowest: #f0f9ff;
  --base-border-primary: #0284c7;
  --base-border-secondary: #38bdf8;
  --base-border-tertiary: #7dd3fc;
  --base-border-focus: #14b8a6;
  --base-bg-selected: #0284c7;
  --base-bg-hover: #eef2ff;
  --base-bg-tooltip: #1e293b;
  --base-text-on-tooltip: #fff;

  /* Background */
  background-color: #e0f2fe;
  background-color: var(--base-bg-low);
}
:root,
.light {
  /*Primary*/
  --bg-primary: #ec1c24;
  --bg-primary-hover: #f16222;
  --text-on-primary: #fff;
  --border-primary: #f16222;
  --border-primary-hover: #f16222;
  --text-primary: #ec1c24;
  --text-primary-hover: #f16222;

  /*Secondary*/
  --bg-secondary: #fff;
  --text-on-secondary: #1e293b;
  --bg-secondary-hover: #f1f5f9;
  --text-on-secondary-hover: #334155;
  --border-secondary: #cbd5e1;

  /*Danger*/
  --bg-danger: #b91c1c;
  --bg-danger-hover: #dc2626;
  --text-on-danger: #fff;
  --border-danger: #ef4444;
  --border-danger-focus: #ef4444;
  --text-danger: #b91c1c;
  --bg-danger-secondary: #fef2f2;
  --text-on-danger-secondary: #b91c1c;
  --icon-on-danger-secondary: #dc2626;

  /*Success*/
  --bg-success: #166534;
  --bg-success-hover: #15803d;
  --text-on-success: #fff;
  --border-success: #16a34a;
  --border-success-focus: #22c55e;
  --text-success: #166534;
  --bg-success-secondary: #f0fdf4;
  --text-on-success-secondary: #15803d;
  --icon-on-success-secondary: #16a34a;

  /*Info*/
  --bg-info-secondary: #eff6ff;
  --text-on-info-secondary: #1d4ed8;
  --icon-on-info-secondary: #3b82f6;

  /*Warning*/
  --bg-warning-secondary: #fffbeb;
  --text-on-warning-secondary: #b45309;
  --icon-on-warning-secondary: #b45309;

  /*Accent*/
  --bg-accent: #2883c4;
  --text-on-accent: #fff;
  --border-accent: #2883c4;
  --text-accent: #2883c4;

  /*Light*/
  --bg-light: #fff;
  --bg-light-hover: #f8fafc;
  --text-on-light: #1e293b;
  --text-on-light-outline: #1e293b;
  --border-light: #cbd5e1;

  /*Dark*/
  --bg-dark: #1e293b;
  --bg-dark-secondary: #64748b;
  --bg-dark-hover: #334155;
  --text-on-dark: #fff;
  --text-on-dark-outline: #1e293b;
  --border-dark: #334155;
  --border-dark-focus: #64748b;

  /*Disabled*/
  --bg-disabled: #e2e8f0;
  --bg-disabled-selected: #94a3b8;
  --text-on-disabled-selected: #e2e8f0;
  --border-disabled: #cbd5e1;
  --bg-disabled-secondary: #cbd5e1;
  --icon-disabled: #94a3b8;

  /*Base*/
  --base-text: #050707;
  --base-text-secondary: #374151;
  --base-text-tertiary: #6b7280;
  --base-text-disabled: #9ca3af;
  --base-icon: #2883c4;
  --base-bg-backdrop: #050707;
  --base-bg-highest: #eee2ce;
  --base-bg-high: #eee2ce;
  --base-bg-base: #eee2ce;
  --base-bg-low: #fff;
  --base-bg-lowest: #eee2ce;
  --base-border-primary: #2883c4;
  --base-border-secondary: #f6a081;
  --base-border-tertiary: #eee2ce;
  --base-border-focus: #ec1c24;
  --base-bg-selected: #ec1c24;
  --base-bg-hover: #eee2ce;
  --base-bg-tooltip: #050707;
  --base-text-on-tooltip: #fff;

  /* Background */
  background-color: #ffffff;
}
:root.jumpstart-dark,
.jumpstart-dark {
  /*Primary*/
  --bg-primary: #282e05;
  --bg-primary-hover: #8ca30d;
  --text-on-primary: #e7fa7d;
  --border-primary: #b6cc37;
  --border-primary-hover: #d8f241;
  --text-primary: #e7fa7d;
  --text-primary-hover: #d8f241;

  /*Secondary*/
  --bg-secondary: #221e2e;
  --text-on-secondary: #fbfaff;
  --bg-secondary-hover: #3b3745;
  --text-on-secondary-hover: #fbfaff;
  --border-secondary: #56525e;

  /*Danger*/
  --bg-danger: #991b1b;
  --bg-danger-hover: #b91c1c;
  --text-on-danger: #fff;
  --border-danger: #dc2626;
  --border-danger-focus: #dc2626;
  --text-danger: #f87171;
  --bg-danger-secondary: #450a0a;
  --text-on-danger-secondary: #fecaca;
  --icon-on-danger-secondary: #f87171;

  /*Success*/
  --bg-success: #166534;
  --bg-success-hover: #15803d;
  --text-on-success: #fff;
  --border-success: #4ade80;
  --border-success-focus: #15803d;
  --text-success: #86efac;
  --bg-success-secondary: #052e16;
  --text-on-success-secondary: #dcfce7;
  --icon-on-success-secondary: #4ade80;

  /*Info*/
  --bg-info-secondary: #172554;
  --text-on-info-secondary: #dbeafe;
  --icon-on-info-secondary: #93c5fd;

  /*Warning*/
  --bg-warning-secondary: #451a03;
  --text-on-warning-secondary: #fef3c7;
  --icon-on-warning-secondary: #f59e0b;

  /*Accent*/
  --bg-accent: #c2410c;
  --text-on-accent: #fff;
  --border-accent: #f97316;
  --text-accent: #fb923c;

  /*Light*/
  --bg-light: #fbfaff;
  --bg-light-hover: #f4f2f7;
  --text-on-light: #3b3745;
  --text-on-light-outline: #3b3745;
  --border-light: #dcdae3;

  /*Dark*/
  --bg-dark: #06030e;
  --bg-dark-secondary: #c2bfc9;
  --bg-dark-hover: #221e2e;
  --text-on-dark: #fff;
  --text-on-dark-outline: #efedf5;
  --border-dark: #56525e;
  --border-dark-focus: #9995a1;

  /*Disabled*/
  --bg-disabled: #716e7a;
  --bg-disabled-selected: #56525e;
  --text-on-disabled-selected: #efedf5;
  --border-disabled: #9995a1;
  --bg-disabled-secondary: #3b3745;
  --icon-disabled: #c2bfc9;

  /*Base*/
  --base-text: #fbfaff;
  --base-text-secondary: #efedf5;
  --base-text-tertiary: #c2bfc9;
  --base-text-disabled: #716e7a;
  --base-icon: #c2bfc9;
  --base-bg-backdrop: #dcdae3;
  --base-bg-highest: #9995a1;
  --base-bg-high: #716e7a;
  --base-bg-base: #56525e;
  --base-bg-low: #3b3745;
  --base-bg-lowest: #221e2e;
  --base-border-primary: #c2bfc9;
  --base-border-secondary: #9995a1;
  --base-border-tertiary: #716e7a;
  --base-border-focus: #566212;
  --base-bg-selected: #3f4711;
  --base-bg-hover: #282e05;
  --base-bg-tooltip: #3b3745;
  --base-text-on-tooltip: #fbfaff;

  /* Background */
  background-color: #3b3745;
  background-color: var(--base-bg-low);
}
:root.jumpstart,
.jumpstart {
  /*Primary*/
  --bg-primary: #d8f241;
  --bg-primary-hover: #e7fa7d;
  --text-on-primary: #221e2e;
  --border-primary: #b6cc37;
  --border-primary-hover: #e7fa7d;
  --text-primary: #566212;
  --text-primary-hover: #6c7c0f;

  /*Secondary*/
  --bg-secondary: #fbfaff;
  --text-on-secondary: #3b3745;
  --bg-secondary-hover: #f4f2f7;
  --text-on-secondary-hover: #56525e;
  --border-secondary: #dcdae3;

  /*Danger*/
  --bg-danger: #b91c1c;
  --bg-danger-hover: #dc2626;
  --text-on-danger: #fff;
  --border-danger: #ef4444;
  --border-danger-focus: #ef4444;
  --text-danger: #b91c1c;
  --bg-danger-secondary: #fef2f2;
  --text-on-danger-secondary: #b91c1c;
  --icon-on-danger-secondary: #dc2626;

  /*Success*/
  --bg-success: #166534;
  --bg-success-hover: #15803d;
  --text-on-success: #fff;
  --border-success: #16a34a;
  --border-success-focus: #22c55e;
  --text-success: #166534;
  --bg-success-secondary: #f0fdf4;
  --text-on-success-secondary: #15803d;
  --icon-on-success-secondary: #16a34a;

  /*Info*/
  --bg-info-secondary: #eff6ff;
  --text-on-info-secondary: #1d4ed8;
  --icon-on-info-secondary: #3b82f6;

  /*Warning*/
  --bg-warning-secondary: #fffbeb;
  --text-on-warning-secondary: #b45309;
  --icon-on-warning-secondary: #b45309;

  /*Accent*/
  --bg-accent: #c2410c;
  --text-on-accent: #fff;
  --border-accent: #f97316;
  --text-accent: #c2410c;

  /*Light*/
  --bg-light: #fbfaff;
  --bg-light-hover: #f4f2f7;
  --text-on-light: #3b3745;
  --text-on-light-outline: #3b3745;
  --border-light: #dcdae3;

  /*Dark*/
  --bg-dark: #06030e;
  --bg-dark-secondary: #c2bfc9;
  --bg-dark-hover: #221e2e;
  --text-on-dark: #fff;
  --text-on-dark-outline: #efedf5;
  --border-dark: #56525e;
  --border-dark-focus: #9995a1;

  /*Disabled*/
  --bg-disabled: #efedf5;
  --bg-disabled-selected: #c2bfc9;
  --text-on-disabled-selected: #efedf5;
  --border-disabled: #dcdae3;
  --bg-disabled-secondary: #dcdae3;
  --icon-disabled: #c2bfc9;

  /*Base*/
  --base-text: #06030e;
  --base-text-secondary: #221e2e;
  --base-text-tertiary: #56525e;
  --base-text-disabled: #9995a1;
  --base-icon: #716e7a;
  --base-bg-backdrop: #3b3745;
  --base-bg-highest: #efedf5;
  --base-bg-high: #f4f2f7;
  --base-bg-base: #fbfaff;
  --base-bg-low: #fff;
  --base-bg-lowest: #fbfaff;
  --base-border-primary: #9995a1;
  --base-border-secondary: #c2bfc9;
  --base-border-tertiary: #dcdae3;
  --base-border-focus: #73baaa;
  --base-bg-selected: #8ca30d;
  --base-bg-hover: #f7fcde;
  --base-bg-tooltip: #3b3745;
  --base-text-on-tooltip: #fbfaff;

  /* Background */
  background-color: #fff;
  background-color: var(--base-bg-low);
}
body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 400;
  line-height: 1.5;
  background-color: #ffffff;
}
main {
  padding-left: 12px;
  padding-right: 12px;
  background-color: #ffffff;
}
@media (min-width: 1024px) {
main {
    padding-left: 0px;
    padding-right: 0px;
}
  }
/* Override container class to use wider margins */
.container {
  max-width: 1400px !important;
}
a {
  color: #ec1c24;
  color: var(--text-primary);
}
a:hover,a:focus {
    color: #f16222;
    color: var(--text-primary-hover);
    transform: none;
  }
ul {
  list-style-type: disc;
  list-style-position: inside;
}
ol {
  list-style-type: decimal;
  list-style-position: inside;
}
.table {
  width: 100%;

}
.table th,.table td {
    vertical-align: top;
  }
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
}
/* We need to override trix.css’s image gallery styles to accommodate the
  <action-text-attachment> element we wrap around attachments. Otherwise,
  images in galleries will be squished by the max-width: 33%; rule.
*/
.link_to_embed {
  white-space: normal;
  margin-top: 1rem
}
@media (min-width: 768px){
  .link_to_embed{
    margin-left: 1rem;
  }
}
.link_to_embed [data-behavior='embed_url']{
  display: block;
}
@media (min-width: 768px){
.link_to_embed [data-behavior='embed_url']{
    margin-left: 0.75rem;
  }
}
@media (min-width: 768px){
.link_to_embed [data-behavior='embed_url']{
    display: inline-block;
  }
}
.trix-content img {
    display: inline-block;
    max-width: 100%;
    height: auto;
  }
.trix-content .attachment-gallery  > action-text-attachment,.trix-content .attachment-gallery  > .attachment {
      flex: 1 0 33%;
      padding: 0 0.5em;
      max-width: 33%;
    }
.trix-content .attachment-gallery.attachment-gallery--2  > action-text-attachment,.trix-content .attachment-gallery.attachment-gallery--4  > action-text-attachment,.trix-content .attachment-gallery.attachment-gallery--2  > .attachment,.trix-content .attachment-gallery.attachment-gallery--4  > .attachment {
        flex-basis: 50%;
        max-width: 50%;
      }
.trix-content .embed {
    display: inline-block;
    line-height: 1;
    margin: 1em 0 !important;
    padding: 0 !important;
    width: 100%;
  }
.trix-content iframe,.trix-content twitter-widget {
    display: inline-block !important;
  }
/* Trix attachment formatting */
.attachment--preview {
  margin: 0.6em 0;
  text-align: center;
  width: 100%;
}
/* Tribute styles */
.tribute-container {
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 0 4px rgba(0,0,0,0.1), 0 5px 20px rgba(0,0,0,0.05);
}
.tribute-container ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
.tribute-container li {
    background: #fff;
    padding: 0.2em 1em;
    min-width: 15em;
    max-width: 100%;
  }
.tribute-container .highlight{
  --tw-bg-opacity: 1;
  background-color: rgba(239, 68, 68, 1);
  background-color: rgba(239, 68, 68, var(--tw-bg-opacity, 1));
}
.tribute-container .highlight {
    color: #fff;
  }
.tribute-container .highlight span {
      font-weight: bold;
    }
/* Tweet embeds */
blockquote.twitter-tweet {
    display: inline-block;
    font-family: "Helvetica Neue", Roboto, "Segoe UI", Calibri, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 16px;
    border-color: #eee #ddd #bbb;
    border-radius: 5px;
    border-width: 1px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    margin: 10px 5px;
    padding: 0 16px 16px;
    max-width: 468px
}
blockquote.twitter-tweet p {
    font-size: 16px;
    font-weight: normal;
    line-height: 20px
}
blockquote.twitter-tweet a {
    color: inherit;
    font-weight: normal;
    -webkit-text-decoration: none;
    text-decoration: none;
    outline: 0 none
}
blockquote.twitter-tweet a:hover,blockquote.twitter-tweet a:focus {
    -webkit-text-decoration: underline;
    text-decoration: underline
}
blockquote.twitter-tweet {
    position: relative;
    background: white;
    padding: 72px 20px 28px !important;
    box-shadow: none;
    border: 1px solid #e1e8ed;
    border-radius: 4px;
    margin: 0;
    font-style: normal;
    text-align: left;
    width: 500px;
    max-width: 100%
}
@media (max-width: 369px) {
    blockquote.twitter-tweet {
        padding:60px 17.5px 21.5px !important
    }
}
blockquote.twitter-tweet:before {
    content: 'Follow';
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5.5px 12px 6.5px 33px;
    background: url("data:image/svg+xml,%3Csvg height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m18.89 7.012c.808-.496 1.343-1.173 1.605-2.034-.786.417-1.569.703-2.351.861-.703-.756-1.593-1.14-2.66-1.14-1.043 0-1.924.366-2.643 1.078-.715.717-1.076 1.588-1.076 2.605 0 .309.039.585.117.819-3.076-.105-5.622-1.381-7.628-3.837-.34.601-.51 1.213-.51 1.846 0 1.301.549 2.332 1.645 3.089-.625-.053-1.176-.211-1.645-.47 0 .929.273 1.705.82 2.388.549.676 1.254 1.107 2.115 1.291-.312.08-.641.118-.979.118-.312 0-.533-.026-.664-.083.23.757.664 1.371 1.291 1.841.625.472 1.344.721 2.152.743-1.332 1.045-2.855 1.562-4.578 1.562-.422 0-.721-.006-.902-.038 1.697 1.102 3.586 1.649 5.676 1.649 2.139 0 4.029-.542 5.674-1.626 1.645-1.078 2.859-2.408 3.639-3.974.784-1.564 1.172-3.192 1.172-4.892v-.468c.758-.57 1.371-1.212 1.84-1.921-.68.293-1.383.492-2.11.593z' fill='%23ccc'/%3E%3C/svg%3E") 9px center no-repeat;
    background-size: 21px;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #ccc;
    font-size: 14px
}
@media (max-width: 369px) {
    blockquote.twitter-tweet:before {
        display:none
    }
}
blockquote.twitter-tweet:after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 36px;
    height: 36px;
    background: #eee url("data:image/svg+xml,%3Csvg height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m12 12c2.21 0 4-1.795 4-4 0-2.21-1.79-4-4-4s-4 1.79-4 4c0 2.205 1.79 4 4 4zm0 2c-2.665 0-8 1.335-8 4v2h16v-2c0-2.665-5.335-4-8-4z' fill='%23444'/%3E%3C/svg%3E") center center no-repeat;
    border-radius: 4px
}
@media (max-width: 369px) {
    blockquote.twitter-tweet:after {
        top:17.5px;
        left: 17.5px
    }
}
blockquote.twitter-tweet p {
    white-space: pre-wrap;
    margin: 0 0 28px
}
@media (max-width: 369px) {
    blockquote.twitter-tweet p {
        font-size:14px;
        margin-bottom: 16px
    }
}
blockquote.twitter-tweet a {
    border: 0;
    box-shadow: none;
    color: #2b7bb9
}
blockquote.twitter-tweet>a {
    color: #888
}
.alert,
.banner {
  background: #eee2ce;
  background: var(--base-bg-base);
  color: #374151;
  color: var(--base-text-secondary);
  padding: 16px;
  box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.10), 0px 1px 3px 0px rgba(0, 0, 0, 0.10);
  display: flex;
  align-items: center;
  font-family: Inter;
  font-size: 14px;
  line-height: 20px;
}
.alert svg,.banner svg {
    height: 20px;
    width: 20px;
    color: #2883c4;
    color: var(--base-icon);
    flex-shrink: 0;
  }
.alert h4 a,.banner h4 a,.alert p a,.banner p a {
    display: inline;
    margin-right: 0px;
  }
.alert p,.banner p {
    font-weight: 400;
    color: #374151;
    color: var(--base-text-secondary);
  }
.alert {
  font-weight: 600;
  border-radius: 4px;
  gap: 16px;
}
.alert svg {
    align-self: start;
  }
.alert h4 {
    font-size: 14px;
  }
.alert a {
    color: #ec1c24;
    color: var(--text-primary);
    display: inline-block;
    font-weight: 600;
    margin-top: 16px;
    margin-right: 24px;
  }
.alert li {
    color: #ec1c24;
    color: var(--text-primary);
    font-weight: 400;
  }
.alert.alert-info {
    background: #eff6ff;
    background: var(--bg-info-secondary);
    color: #1d4ed8;
    color: var(--text-on-info-secondary);
  }
.alert.alert-info svg {
      color: #3b82f6;
      color: var(--icon-on-info-secondary);
    }
.alert.alert-info a,.alert.alert-info li {
      color: #1d4ed8;
      color: var(--text-on-info-secondary);
    }
.alert.alert-success {
    background: #f0fdf4;
    background: var(--bg-success-secondary);
    color: #15803d;
    color: var(--text-on-success-secondary);
  }
.alert.alert-success svg {
      color: #16a34a;
      color: var(--icon-on-success-secondary);
    }
.alert.alert-success a,.alert.alert-success li {
      color: #15803d;
      color: var(--text-on-success-secondary);
    }
.alert.alert-error {
    background: #fef2f2;
    background: var(--bg-danger-secondary);
    color: #b91c1c;
    color: var(--text-on-danger-secondary);
  }
.alert.alert-error svg {
      color: #dc2626;
      color: var(--icon-on-danger-secondary);
    }
.alert.alert-error a,.alert.alert-error li {
      color: #b91c1c;
      color: var(--text-on-danger-secondary);
    }
.alert.alert-warning {
    background: #fffbeb;
    background: var(--bg-warning-secondary);
    color: #b45309;
    color: var(--text-on-warning-secondary);
  }
.alert.alert-warning svg {
      color: #b45309;
      color: var(--icon-on-warning-secondary);
    }
.alert.alert-warning a,.alert.alert-warning li {
      color: #b45309;
      color: var(--text-on-warning-secondary);
    }
.banner {
  justify-content: center;
  gap: 8px;
}
.banner.banner-info {
    background: #eff6ff;
    background: var(--bg-info-secondary);
    color: #1d4ed8;
    color: var(--text-on-info-secondary);
  }
.banner.banner-info p {
      color: #1d4ed8;
      color: var(--text-on-info-secondary);
    }
.banner.banner-success {
    background: #f0fdf4;
    background: var(--bg-success-secondary);
    color: #15803d;
    color: var(--text-on-success-secondary);
  }
.banner.banner-success p {
      color: #15803d;
      color: var(--text-on-success-secondary);
    }
.banner.banner-error {
    background: #fef2f2;
    background: var(--bg-danger-secondary);
    color: #b91c1c;
    color: var(--text-on-danger-secondary);
  }
.banner.banner-error p {
      color: #b91c1c;
      color: var(--text-on-danger-secondary);
    }
.banner.banner-warning {
    background: #fffbeb;
    background: var(--bg-warning-secondary);
    color: #b45309;
    color: var(--text-on-warning-secondary);
  }
.banner.banner-warning p {
      color: #b45309;
      color: var(--text-on-warning-secondary);
    }
.banner.banner-impersonate {
    background: #dc2626;
    background: var(--bg-danger-hover);
    color: #fff;
    color: var(--text-on-danger);
  }
.banner.banner-impersonate a {
      color: #fff;
      color: var(--text-on-danger);
    }
.banner.banner-impersonate  > * + * {
      margin-left: 8px;
    }
.icon-alert {
  fill: #b45309;
  fill: var(--icon-on-warning-secondary);
}
.icon-error {
  fill: #dc2626;
  fill: var(--icon-on-danger-secondary);
}
.icon-notice {
  fill: #3b82f6;
  fill: var(--icon-on-info-secondary);
}
.icon-success {
  fill: #16a34a;
  fill: var(--icon-on-success-secondary);
}
.icon-default {
  fill: #2883c4;
  fill: var(--base-icon);
}
.animated {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes slide-in-from-left {
  from {
    transform: translateX(-100%);
  }
}
@keyframes slide-out-to-left {
  to {
    transform: translateX(-100%);
  }
}
@keyframes slide-in-from-right {
  from {
    transform: translateX(100%);
  }
}
@keyframes slide-out-to-right {
  to {
    transform: translateX(100%);
  }
}
.announcement-new{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 226, 226, 1);
  background-color: rgba(254, 226, 226, var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgba(220, 38, 38, 1);
  color: rgba(220, 38, 38, var(--tw-text-opacity, 1));
}
.announcement-fix{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 226, 226, 1);
  background-color: rgba(254, 226, 226, var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgba(220, 38, 38, 1);
  color: rgba(220, 38, 38, var(--tw-text-opacity, 1));
}
.profile-sidebar .announcement-fix:hover {
  background-color: #fef2f2;
  border-left: 4px solid #ef4444;
}
.announcement-update{
  --tw-bg-opacity: 1;
  background-color: rgba(220, 252, 231, 1);
  background-color: rgba(220, 252, 231, var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgba(22, 163, 74, 1);
  color: rgba(22, 163, 74, var(--tw-text-opacity, 1));
}
.announcement-improvement{
  --tw-bg-opacity: 1;
  background-color: rgba(243, 232, 255, 1);
  background-color: rgba(243, 232, 255, var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgba(147, 51, 234, 1);
  color: rgba(147, 51, 234, var(--tw-text-opacity, 1));
}
.avatar {
  font-size: 13px;
  font-weight: 600;
  position: relative;
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  min-width: 14px;
  color: #fff;
  align-items: center;
  justify-content: center;
}
.avatar .avatar-small {
    position: absolute;
    border-radius: 50%;
    height: 16px;
    width: 16px;
    bottom: 0;
    right: 0;
    box-shadow: 0 0 0 2px #fff;
  }
/* Hotwire's version of data-disable-with */
button                  .when-disabled { display: none; }
button[disabled]        .when-disabled { display: inline; display: initial; }
button                  .when-enabled { display: inline; display: initial; }
button[disabled]        .when-enabled { display: none; }
pre{
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
pre code.hljs{
  border-radius: 0.25rem;
}
pre code.hljs{
  padding: 1rem;
}
pre code.text-xs.px-2.py-1.hljs.truncate.border {
  position: relative;
  z-index: 10;
}
pre body:has(.profile-sidebar.open) code.text-xs.px-2.py-1.hljs.truncate.border {
  z-index: 1;
}
code{
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, 1);
  color: rgba(239, 68, 68, var(--tw-text-opacity, 1));
}
.btn-twitter { background: #4099ff; --tw-text-opacity: 1; color: rgba(255, 255, 255, 1); color: rgba(255, 255, 255, var(--tw-text-opacity, 1)); }
.btn-facebook { background: #3B5998; --tw-text-opacity: 1; color: rgba(255, 255, 255, 1); color: rgba(255, 255, 255, var(--tw-text-opacity, 1)); }
.btn-github{
  --tw-bg-opacity: 1;
  background-color: rgba(107, 114, 128, 1);
  background-color: rgba(107, 114, 128, var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.btn-google_oauth2 { background: #D34836; --tw-text-opacity: 1; color: rgba(255, 255, 255, 1); color: rgba(255, 255, 255, var(--tw-text-opacity, 1)); }
.btn-microsoft_graph{
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgba(15, 23, 42, 1);
  border-color: rgba(15, 23, 42, var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgba(15, 23, 42, 1);
  color: rgba(15, 23, 42, var(--tw-text-opacity, 1));
}
.dark .btn-microsoft_graph {
  background-color: #ffffff;
  background-color: var(--card-bg);
  border-color: #e5e7eb;
  border-color: var(--border-color);
}
.btn-microsoft_graph {
  transition: all 0.3s ease;
}
.text-xs.px-2.py-1.rounded.truncate.btn-microsoft_graph {
  position: relative;
  z-index: 10;
}
.btn-microsoft_graph.shadow-md {
  position: relative;
  z-index: 0;
}
body:has(.profile-sidebar.open) .text-xs.px-2.py-1.rounded.truncate.btn-microsoft_graph {
  z-index: 1;
}
tr.over-budget td.btn-microsoft_graph,
tr.over-budget th.btn-microsoft_graph {
  border-color: #ef4444;
  background-color: #fef2f2;
}
.direct-upload {
  display: inline-block;
  position: relative;
  padding: 2px 4px;
  margin: 0 3px 3px 0;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  font-size: 11px;
  line-height: 13px;
}
.direct-upload--pending {
  opacity: 0.6;
}
.direct-upload__progress {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  opacity: 0.2;
  background: #0076ff;
  transition: width 120ms ease-out, opacity 60ms 60ms ease-in;
  transform: translate3d(0, 0, 0);
}
.direct-upload--complete .direct-upload__progress {
  opacity: 0.4;
}
.direct-upload--error {
  border-color: red;
}
input[type=file][data-direct-upload-url][disabled] {
  display: none;
}
/* File upload error and success messages */
.file-upload-error {
  animation: slideIn 0.3s ease-out;
}
.file-upload-success {
  animation: slideIn 0.3s ease-out;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Enhanced direct upload error styling */
.direct-upload--error {
  border-color: #ef4444;
  background-color: #fef2f2;
}
.direct-upload--error .direct-upload__filename {
  color: #dc2626;
}
.docs-main {
  min-height: calc(100vh - 64px);
}
.image-placeholder {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  --tw-bg-opacity: 1;
  background-color: rgba(209, 213, 219, 1);
  background-color: rgba(209, 213, 219, var(--tw-bg-opacity, 1));
}

#profile-sidebar nav a.image-placeholder.items-center.text-gray-700,
#profile-sidebar li a.image-placeholder.items-center.text-gray-700 {
  /* Layout - locked for links (margins/padding handled by rule below) */
  /* Ensure consistent hover area */

  /* Typography - locked */

  /* Visual - locked */
  /* Force opacity to 1 to prevent any fade effects */

  /* Behavior - no transitions - override ALL possible transition sources */
  /* Layout - locked for links (margins/padding handled by rule below) */
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  /* Ensure consistent hover area */
  position: relative;
  z-index: 1;
  min-height: 44px;

  /* Typography - locked */
  color: #374151;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
  word-spacing: 0;
  -webkit-text-decoration: none;
  text-decoration: none;

  /* Visual - locked */
  background-color: transparent;
  background: transparent;
  background-image: none;
  border: none;
  border-radius: 8px;
  /* Force opacity to 1 to prevent any fade effects */
  opacity: 1;

  /* Behavior - no transitions - override ALL possible transition sources */
  transform: none;
  transition: none;
  animation: none;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition-property: none;
  transition-duration: 0s;
  transition-timing-function: none;
  transition-delay: 0s;
  -webkit-animation: none;
  -moz-animation: none;
  -o-animation: none;
}

#profile-sidebar nav a.flex.image-placeholder.text-gray-700,
#profile-sidebar li a.flex.image-placeholder.text-gray-700 {
  /* Layout - locked for links (margins/padding handled by rule below) */
  /* Ensure consistent hover area */

  /* Typography - locked */

  /* Visual - locked */
  /* Force opacity to 1 to prevent any fade effects */

  /* Behavior - no transitions - override ALL possible transition sources */
  /* Layout - locked for links (margins/padding handled by rule below) */
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  /* Ensure consistent hover area */
  position: relative;
  z-index: 1;
  min-height: 44px;

  /* Typography - locked */
  color: #374151;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
  word-spacing: 0;
  -webkit-text-decoration: none;
  text-decoration: none;

  /* Visual - locked */
  background-color: transparent;
  background: transparent;
  background-image: none;
  border: none;
  border-radius: 8px;
  /* Force opacity to 1 to prevent any fade effects */
  opacity: 1;

  /* Behavior - no transitions - override ALL possible transition sources */
  transform: none;
  transition: none;
  animation: none;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition-property: none;
  transition-duration: 0s;
  transition-timing-function: none;
  transition-delay: 0s;
  -webkit-animation: none;
  -moz-animation: none;
  -o-animation: none;
}

#profile-sidebar nav a.image-placeholder.items-center.text-gray-700:hover,
#profile-sidebar li a.image-placeholder.items-center.text-gray-700:hover,
#profile-sidebar a.image-placeholder.items-center.text-gray-700:hover {
  /* ONLY change background - ensure no duplicate backgrounds */
  /* Use rgb() instead of rgba() to prevent opacity transitions */
  /* Force opacity to 1 to prevent any fade */

  /* Re-assert ALL properties to prevent any movement */
  /* Padding and margins handled by full-width rule below */
  /* Remove ALL transitions - override every possible source */
  /* Ensure the entire link area triggers hover consistently */
  /* Fill entire area to prevent gaps */
  /* ONLY change background - ensure no duplicate backgrounds */
  /* Use rgb() instead of rgba() to prevent opacity transitions */
  /* Force opacity to 1 to prevent any fade */

  /* Re-assert ALL properties to prevent any movement */
  /* Padding and margins handled by full-width rule below */
  /* Remove ALL transitions - override every possible source */
  /* Ensure the entire link area triggers hover consistently */
  /* Fill entire area to prevent gaps */
  /* ONLY change background - ensure no duplicate backgrounds */
  /* Use rgb() instead of rgba() to prevent opacity transitions */
  background-color: rgb(243, 244, 246);
  background: rgb(243, 244, 246);
  background-image: none;
  /* Force opacity to 1 to prevent any fade */
  opacity: 1;

  /* Re-assert ALL properties to prevent any movement */
  display: flex;
  align-items: center;
  /* Padding and margins handled by full-width rule below */
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  color: #374151;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
  word-spacing: 0;
  -webkit-text-decoration: none;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  transform: none;
  /* Remove ALL transitions - override every possible source */
  transition: none;
  animation: none;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition-property: none;
  transition-duration: 0s;
  transition-timing-function: none;
  transition-delay: 0s;
  /* Ensure the entire link area triggers hover consistently */
  position: relative;
  z-index: 1;
  /* Fill entire area to prevent gaps */
  min-height: 44px;
}

#profile-sidebar nav a.flex.image-placeholder.text-gray-700:hover,
#profile-sidebar li a.flex.image-placeholder.text-gray-700:hover,
#profile-sidebar a.flex.image-placeholder.text-gray-700:hover {
  /* ONLY change background - ensure no duplicate backgrounds */
  /* Use rgb() instead of rgba() to prevent opacity transitions */
  /* Force opacity to 1 to prevent any fade */

  /* Re-assert ALL properties to prevent any movement */
  /* Padding and margins handled by full-width rule below */
  /* Remove ALL transitions - override every possible source */
  /* Ensure the entire link area triggers hover consistently */
  /* Fill entire area to prevent gaps */
  /* ONLY change background - ensure no duplicate backgrounds */
  /* Use rgb() instead of rgba() to prevent opacity transitions */
  /* Force opacity to 1 to prevent any fade */

  /* Re-assert ALL properties to prevent any movement */
  /* Padding and margins handled by full-width rule below */
  /* Remove ALL transitions - override every possible source */
  /* Ensure the entire link area triggers hover consistently */
  /* Fill entire area to prevent gaps */
  /* ONLY change background - ensure no duplicate backgrounds */
  /* Use rgb() instead of rgba() to prevent opacity transitions */
  background-color: rgb(243, 244, 246);
  background: rgb(243, 244, 246);
  background-image: none;
  /* Force opacity to 1 to prevent any fade */
  opacity: 1;

  /* Re-assert ALL properties to prevent any movement */
  display: flex;
  align-items: center;
  /* Padding and margins handled by full-width rule below */
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  color: #374151;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
  word-spacing: 0;
  -webkit-text-decoration: none;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  transform: none;
  /* Remove ALL transitions - override every possible source */
  transition: none;
  animation: none;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition-property: none;
  transition-duration: 0s;
  transition-timing-function: none;
  transition-delay: 0s;
  /* Ensure the entire link area triggers hover consistently */
  position: relative;
  z-index: 1;
  /* Fill entire area to prevent gaps */
  min-height: 44px;
}

#profile-sidebar nav a.image-placeholder.items-center.text-gray-700,
#profile-sidebar li a.image-placeholder.items-center.text-gray-700,
#profile-sidebar a.image-placeholder.items-center.text-gray-700 {
  /* Counteract nav p-6 padding to make links span full width */
  /* Tailwind p-6 = 1.5rem = 24px, but check actual computed value */
  /* Original link padding was 12px 16px, so left padding = 24px nav + 16px = 40px */
  /* Ensure full width */ /* 100% + 24px left + 24px right */
  /* Counteract nav p-6 padding to make links span full width */
  /* Tailwind p-6 = 1.5rem = 24px, but check actual computed value */
  /* Original link padding was 12px 16px, so left padding = 24px nav + 16px = 40px */
  /* Ensure full width */ /* 100% + 24px left + 24px right */
  /* Counteract nav p-6 padding to make links span full width */
  /* Tailwind p-6 = 1.5rem = 24px, but check actual computed value */
  margin-left: -24px;
  margin-right: -24px;
  /* Original link padding was 12px 16px, so left padding = 24px nav + 16px = 40px */
  padding-left: 40px;
  padding-right: 40px;
  /* Ensure full width */
  width: calc(100% + 48px); /* 100% + 24px left + 24px right */
  max-width: none;
}

#profile-sidebar nav a.flex.image-placeholder.text-gray-700,
#profile-sidebar li a.flex.image-placeholder.text-gray-700,
#profile-sidebar a.flex.image-placeholder.text-gray-700 {
  /* Counteract nav p-6 padding to make links span full width */
  /* Tailwind p-6 = 1.5rem = 24px, but check actual computed value */
  /* Original link padding was 12px 16px, so left padding = 24px nav + 16px = 40px */
  /* Ensure full width */ /* 100% + 24px left + 24px right */
  /* Counteract nav p-6 padding to make links span full width */
  /* Tailwind p-6 = 1.5rem = 24px, but check actual computed value */
  /* Original link padding was 12px 16px, so left padding = 24px nav + 16px = 40px */
  /* Ensure full width */ /* 100% + 24px left + 24px right */
  /* Counteract nav p-6 padding to make links span full width */
  /* Tailwind p-6 = 1.5rem = 24px, but check actual computed value */
  margin-left: -24px;
  margin-right: -24px;
  /* Original link padding was 12px 16px, so left padding = 24px nav + 16px = 40px */
  padding-left: 40px;
  padding-right: 40px;
  /* Ensure full width */
  width: calc(100% + 48px); /* 100% + 24px left + 24px right */
  max-width: none;
}

#profile-sidebar nav a.image-placeholder.items-center.text-gray-700:hover,
#profile-sidebar li a.image-placeholder.items-center.text-gray-700:hover,
#profile-sidebar a.image-placeholder.items-center.text-gray-700:hover {
  /* Ensure full width on hover */ /* 100% + 24px left + 24px right */
  /* Ensure full width on hover */ /* 100% + 24px left + 24px right */
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 40px;
  padding-right: 40px;
  /* Ensure full width on hover */
  width: calc(100% + 48px); /* 100% + 24px left + 24px right */
  max-width: none;
}

#profile-sidebar nav a.flex.image-placeholder.text-gray-700:hover,
#profile-sidebar li a.flex.image-placeholder.text-gray-700:hover,
#profile-sidebar a.flex.image-placeholder.text-gray-700:hover {
  /* Ensure full width on hover */ /* 100% + 24px left + 24px right */
  /* Ensure full width on hover */ /* 100% + 24px left + 24px right */
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 40px;
  padding-right: 40px;
  /* Ensure full width on hover */
  width: calc(100% + 48px); /* 100% + 24px left + 24px right */
  max-width: none;
}

#profile-sidebar .image-placeholder.items-center img,
#profile-sidebar .image-placeholder.items-center:hover img {
  /* Override any inline styles, Tailwind classes, or HTML attributes */
  /* Force override HTML width/height attributes */
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  margin-right: 12px;
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  display: block;
  flex-shrink: 0;
  flex-grow: 0;
  flex-basis: 24px;
  transform: none;
  transition: none;
  position: static;
  box-sizing: border-box;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  /* Override any inline styles, Tailwind classes, or HTML attributes */
  aspect-ratio: 1 / 1;
  /* Force override HTML width/height attributes */
  max-width: 24px;
  max-height: 24px;
}

#profile-sidebar .flex.image-placeholder img,
#profile-sidebar .flex.image-placeholder:hover img {
  /* Override any inline styles, Tailwind classes, or HTML attributes */
  /* Force override HTML width/height attributes */
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  margin-right: 12px;
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  display: block;
  flex-shrink: 0;
  flex-grow: 0;
  flex-basis: 24px;
  transform: none;
  transition: none;
  position: static;
  box-sizing: border-box;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  /* Override any inline styles, Tailwind classes, or HTML attributes */
  aspect-ratio: 1 / 1;
  /* Force override HTML width/height attributes */
  max-width: 24px;
  max-height: 24px;
}

#profile-sidebar nav a > span.image-placeholder,
#profile-sidebar li a > span.image-placeholder {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  max-width: 24px;
  max-height: 24px;
  flex-shrink: 0;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#profile-sidebar
  nav
  a
  span:not(.w-6):not(.h-6):not(.rounded-full):not(.image-placeholder):not(
    [style*='width']
  ):not([style*='height']),
#profile-sidebar
  li
  a
  span:not(.w-6):not(.h-6):not(.rounded-full):not(.image-placeholder):not(
    [style*='width']
  ):not([style*='height']),
#profile-sidebar
  nav
  a:hover
  span:not(.w-6):not(.h-6):not(.rounded-full):not(.image-placeholder):not(
    [style*='width']
  ):not([style*='height']),
#profile-sidebar
  li
  a:hover
  span:not(.w-6):not(.h-6):not(.rounded-full):not(.image-placeholder):not(
    [style*='width']
  ):not([style*='height']),
#profile-sidebar
  a
  span:not(.w-6):not(.h-6):not(.rounded-full):not(.image-placeholder):not(
    [style*='width']
  ):not([style*='height']),
#profile-sidebar
  a:hover
  span:not(.w-6):not(.h-6):not(.rounded-full):not(.image-placeholder):not(
    [style*='width']
  ):not([style*='height']),
#profile-sidebar
  nav
  li
  a
  span:not(.w-6):not(.h-6):not(.rounded-full):not(.image-placeholder):not(
    [style*='width']
  ):not([style*='height']),
#profile-sidebar
  nav
  li
  a:hover
  span:not(.w-6):not(.h-6):not(.rounded-full):not(.image-placeholder):not(
    [style*='width']
  ):not([style*='height']) {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  height: 20px;
  min-height: 20px;
  max-height: 20px;
  margin: 0;
  padding: 0;
  transform: none;
  transition: none;
  position: static;
  vertical-align: baseline;
  flex: 1 1 auto;
  box-sizing: border-box;
  white-space: nowrap;
}

#profile-sidebar nav a.image-placeholder.items-center.text-gray-700,
#profile-sidebar li a.image-placeholder.items-center.text-gray-700 {
  /* Force no transitions - override ALL possible sources */

  /* Force full-width with negative margins */
  /* Override width to span full sidebar including padding */ /* 100% + 24px left + 24px right */

  /* Ensure consistent hover area */
  /* Force no transitions - override ALL possible sources */
  transition: none;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition-property: none;
  transition-duration: 0s;
  transition-timing-function: none;
  transition-delay: 0s;
  animation: none;

  /* Force full-width with negative margins */
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 40px;
  padding-right: 40px;
  /* Override width to span full sidebar including padding */
  width: calc(100% + 48px); /* 100% + 24px left + 24px right */
  max-width: none;

  /* Ensure consistent hover area */
  position: relative;
  z-index: 1;
  min-height: 44px;
  display: flex;
  align-items: center;
}

#profile-sidebar nav a.flex.image-placeholder.text-gray-700,
#profile-sidebar li a.flex.image-placeholder.text-gray-700 {
  /* Force no transitions - override ALL possible sources */

  /* Force full-width with negative margins */
  /* Override width to span full sidebar including padding */ /* 100% + 24px left + 24px right */

  /* Ensure consistent hover area */
  /* Force no transitions - override ALL possible sources */
  transition: none;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition-property: none;
  transition-duration: 0s;
  transition-timing-function: none;
  transition-delay: 0s;
  animation: none;

  /* Force full-width with negative margins */
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 40px;
  padding-right: 40px;
  /* Override width to span full sidebar including padding */
  width: calc(100% + 48px); /* 100% + 24px left + 24px right */
  max-width: none;

  /* Ensure consistent hover area */
  position: relative;
  z-index: 1;
  min-height: 44px;
  display: flex;
  align-items: center;
}

#profile-sidebar nav a.image-placeholder.items-center.text-gray-700:hover,
#profile-sidebar li a.image-placeholder.items-center.text-gray-700:hover,
#profile-sidebar a.image-placeholder.items-center.text-gray-700:hover {
  /* Force no transitions on hover - use maximum specificity */

  /* Force full-width background - set immediately without transition */
  /* Override width to span full sidebar including padding */ /* 100% + 24px left + 24px right */
  /* Use rgb() to prevent opacity transitions - force instant change */
  /* Force opacity to 1 to prevent any fade effects */
  /* Prevent GPU-accelerated transitions */

  /* Ensure consistent hover area - match base state exactly */
  /* Force no transitions on hover - use maximum specificity */

  /* Force full-width background - set immediately without transition */
  /* Override width to span full sidebar including padding */ /* 100% + 24px left + 24px right */
  /* Use rgb() to prevent opacity transitions - force instant change */
  /* Force opacity to 1 to prevent any fade effects */
  /* Prevent GPU-accelerated transitions */

  /* Ensure consistent hover area - match base state exactly */
  /* Force no transitions on hover - use maximum specificity */
  transition: none;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition-property: none;
  transition-duration: 0s;
  transition-timing-function: none;
  transition-delay: 0s;
  animation: none;
  -webkit-animation: none;
  -moz-animation: none;
  -o-animation: none;

  /* Force full-width background - set immediately without transition */
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 40px;
  padding-right: 40px;
  /* Override width to span full sidebar including padding */
  width: calc(100% + 48px); /* 100% + 24px left + 24px right */
  max-width: none;
  /* Use rgb() to prevent opacity transitions - force instant change */
  background-color: rgb(243, 244, 246);
  background: rgb(243, 244, 246);
  background-image: none;
  /* Force opacity to 1 to prevent any fade effects */
  opacity: 1;
  /* Prevent GPU-accelerated transitions */
  will-change: auto;
  backface-visibility: visible;

  /* Ensure consistent hover area - match base state exactly */
  position: relative;
  z-index: 1;
  min-height: 44px;
  display: flex;
  align-items: center;
}

#profile-sidebar nav a.flex.image-placeholder.text-gray-700:hover,
#profile-sidebar li a.flex.image-placeholder.text-gray-700:hover,
#profile-sidebar a.flex.image-placeholder.text-gray-700:hover {
  /* Force no transitions on hover - use maximum specificity */

  /* Force full-width background - set immediately without transition */
  /* Override width to span full sidebar including padding */ /* 100% + 24px left + 24px right */
  /* Use rgb() to prevent opacity transitions - force instant change */
  /* Force opacity to 1 to prevent any fade effects */
  /* Prevent GPU-accelerated transitions */

  /* Ensure consistent hover area - match base state exactly */
  /* Force no transitions on hover - use maximum specificity */

  /* Force full-width background - set immediately without transition */
  /* Override width to span full sidebar including padding */ /* 100% + 24px left + 24px right */
  /* Use rgb() to prevent opacity transitions - force instant change */
  /* Force opacity to 1 to prevent any fade effects */
  /* Prevent GPU-accelerated transitions */

  /* Ensure consistent hover area - match base state exactly */
  /* Force no transitions on hover - use maximum specificity */
  transition: none;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition-property: none;
  transition-duration: 0s;
  transition-timing-function: none;
  transition-delay: 0s;
  animation: none;
  -webkit-animation: none;
  -moz-animation: none;
  -o-animation: none;

  /* Force full-width background - set immediately without transition */
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 40px;
  padding-right: 40px;
  /* Override width to span full sidebar including padding */
  width: calc(100% + 48px); /* 100% + 24px left + 24px right */
  max-width: none;
  /* Use rgb() to prevent opacity transitions - force instant change */
  background-color: rgb(243, 244, 246);
  background: rgb(243, 244, 246);
  background-image: none;
  /* Force opacity to 1 to prevent any fade effects */
  opacity: 1;
  /* Prevent GPU-accelerated transitions */
  will-change: auto;
  backface-visibility: visible;

  /* Ensure consistent hover area - match base state exactly */
  position: relative;
  z-index: 1;
  min-height: 44px;
  display: flex;
  align-items: center;
}
#profile-sidebar nav a.image-placeholder.items-center.text-gray-700:hover,
#profile-sidebar li a.image-placeholder.items-center.text-gray-700:hover,
#profile-sidebar a.image-placeholder.items-center.text-gray-700:hover {
  /* Force instant background change - no transitions whatsoever */

  /* Absolutely no transitions */

  /* Prevent GPU acceleration that might cause transitions */
  /* Force instant background change - no transitions whatsoever */

  /* Absolutely no transitions */

  /* Prevent GPU acceleration that might cause transitions */
  /* Force instant background change - no transitions whatsoever */
  background-color: rgb(243, 244, 246);
  background: rgb(243, 244, 246);
  background-image: none;
  opacity: 1;

  /* Absolutely no transitions */
  transition: none;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition-property: none;
  transition-duration: 0s;
  transition-timing-function: none;
  transition-delay: 0s;
  animation: none;
  -webkit-animation: none;
  -moz-animation: none;
  -o-animation: none;

  /* Prevent GPU acceleration that might cause transitions */
  will-change: auto;
  backface-visibility: visible;
  transform: translateZ(0);
}
#profile-sidebar nav a.flex.image-placeholder.text-gray-700:hover,
#profile-sidebar li a.flex.image-placeholder.text-gray-700:hover,
#profile-sidebar a.flex.image-placeholder.text-gray-700:hover {
  /* Force instant background change - no transitions whatsoever */

  /* Absolutely no transitions */

  /* Prevent GPU acceleration that might cause transitions */
  /* Force instant background change - no transitions whatsoever */

  /* Absolutely no transitions */

  /* Prevent GPU acceleration that might cause transitions */
  /* Force instant background change - no transitions whatsoever */
  background-color: rgb(243, 244, 246);
  background: rgb(243, 244, 246);
  background-image: none;
  opacity: 1;

  /* Absolutely no transitions */
  transition: none;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition-property: none;
  transition-duration: 0s;
  transition-timing-function: none;
  transition-delay: 0s;
  animation: none;
  -webkit-animation: none;
  -moz-animation: none;
  -o-animation: none;

  /* Prevent GPU acceleration that might cause transitions */
  will-change: auto;
  backface-visibility: visible;
  transform: translateZ(0);
}
.form-group {
  margin-bottom: 24px;
  position: relative;
}
.form-group:has( > input:required) label::after,.form-group:has( > select:required) label::after {
    content: "*";
    color: #dc2626;
    color: var(--icon-on-danger-secondary);
  }
.form-group .calendar-icon {
    position: absolute;
    right: 8px;
    top: 50%;
  }
.form-group input:focus-visible  + .calendar-icon path {
      fill: #f16222;
      fill: var(--border-primary-hover);
      color: #f16222;
      color: var(--border-primary-hover);
    }
.form-group input:focus  + .calendar-icon path {
      fill: #f16222;
      fill: var(--border-primary-hover);
      color: #f16222;
      color: var(--border-primary-hover);
    }
.form-group input.error  + .calendar-icon path {
      fill: #dc2626;
      fill: var(--icon-on-danger-secondary);
      color: #dc2626;
      color: var(--icon-on-danger-secondary);
    }
.form-group:has( > [data-controller="flatpickr"]) {
    width: 33.33%;
  }
/* non-input elements (like the Stripe card form) can be styled to look like an input */
div.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  border-width: 1px;
  padding-top: .5rem;
  padding-right: .75rem;
  padding-bottom: .5rem;
  padding-left: .75rem;
  font-size: 1rem;
  line-height: 1.5rem;
}
select {
  background-color: #fff;
  background-color: var(--base-bg-low);
  border: 1px solid #2883c4;
  border: 1px solid var(--base-border-primary);
  border-radius: 0;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  padding: 6px 0px;
  width: 100%;
}
select[disabled],select[read-only] {
    background-color: #e2e8f0;
    background-color: var(--bg-disabled);
    border: 1px solid #cbd5e1;
    border: 1px solid var(--border-disabled);
    color: #6b7280;
    color: var(--base-text-tertiary);
    cursor: not-allowed;
  }
select:focus,select:focus-visible {
    box-shadow: inset 0 0 0 1px #f16222;
    box-shadow: inset 0 0 0 1px var(--border-primary-hover);
    border: 1px solid #f16222;
    border: 1px solid var(--border-primary-hover);
  }
select:not([multiple]) {
  padding-left: 12px;
}
select[multiple] {
  background: #fff;
  background: var(--base-bg-low);
  border: 1px solid #2883c4;
  border: 1px solid var(--base-border-primary);
  border-radius: 0;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  padding: 6px 0px;
  width: 100%;
}
select[multiple]::-moz-placeholder {
    color: #6b7280;
    color: var(--base-text-tertiary);
  }
select[multiple]::placeholder {
    color: #6b7280;
    color: var(--base-text-tertiary);
  }
select[multiple]:focus,select[multiple]:focus-visible {
    box-shadow: inset 0 0 0 1px #f16222;
    box-shadow: inset 0 0 0 1px var(--border-primary-hover);
    border: 1px solid #f16222;
    border: 1px solid var(--border-primary-hover);
  }
select.error[multiple] {
    background: #fef2f2;
    background: var(--bg-danger-secondary);
    box-shadow: inset 0 0 0 1px #ef4444;
    box-shadow: inset 0 0 0 1px var(--border-danger);
    border: 1px solid #ef4444;
    border: 1px solid var(--border-danger);
    color: #b91c1c;
    color: var(--text-on-danger-secondary);
  }
select.error[multiple]:focus,select.error[multiple]:focus-visible {
      background: #fff;
      background: var(--base-bg-low);
    }
select[multiple][disabled],select[multiple][read-only] {
    background: #e2e8f0;
    background: var(--bg-disabled);
    border: 1px solid #cbd5e1;
    border: 1px solid var(--border-disabled);
    color: #6b7280;
    color: var(--base-text-tertiary);
    cursor: not-allowed;
  }
select[multiple] option {
    color: #1e293b;
    color: var(--text-on-secondary);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 4px 12px;
  }
select[multiple] option[selected] {
      background: #cbd5e1;
      background: var(--bg-disabled-secondary);
    }
label,
.label {
  color: #374151;
  color: var(--base-text-secondary);
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 5px;
}
.form-hint {
  color: #374151;
  color: var(--base-text-secondary);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  margin-top: 4px;
}
.form-hint.error {
    color: #b91c1c;
    color: var(--text-danger);
    display: flex;
    align-items: center;
  }
.form-hint.error::before {
      content: "";
      display: inline-block;
      width: 16px;
      height: 16px;
      background-color: #dc2626;
      background-color: var(--icon-on-danger-secondary);
      -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.70013 2.25C7.27749 1.25 8.72086 1.25 9.29821 2.25L14.4944 11.25C15.0717 12.25 14.35 13.5 13.1953 13.5H2.80302C1.64832 13.5 0.926631 12.25 1.50398 11.25L6.70013 2.25ZM7.99917 4C8.41338 4 8.74917 4.33579 8.74917 4.75V7.75C8.74917 8.16421 8.41338 8.5 7.99917 8.5C7.58496 8.5 7.24917 8.16421 7.24917 7.75V4.75C7.24917 4.33579 7.58496 4 7.99917 4ZM7.99917 12C8.55146 12 8.99917 11.5523 8.99917 11C8.99917 10.4477 8.55146 10 7.99917 10C7.44689 10 6.99917 10.4477 6.99917 11C6.99917 11.5523 7.44689 12 7.99917 12Z" fill="#DC2626"/></svg>');
              mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.70013 2.25C7.27749 1.25 8.72086 1.25 9.29821 2.25L14.4944 11.25C15.0717 12.25 14.35 13.5 13.1953 13.5H2.80302C1.64832 13.5 0.926631 12.25 1.50398 11.25L6.70013 2.25ZM7.99917 4C8.41338 4 8.74917 4.33579 8.74917 4.75V7.75C8.74917 8.16421 8.41338 8.5 7.99917 8.5C7.58496 8.5 7.24917 8.16421 7.24917 7.75V4.75C7.24917 4.33579 7.58496 4 7.99917 4ZM7.99917 12C8.55146 12 8.99917 11.5523 8.99917 11C8.99917 10.4477 8.55146 10 7.99917 10C7.44689 10 6.99917 10.4477 6.99917 11C6.99917 11.5523 7.44689 12 7.99917 12Z" fill="#DC2626"/></svg>');
      -webkit-mask-size: contain;
              mask-size: contain;
      -webkit-mask-repeat: no-repeat;
              mask-repeat: no-repeat;
      -webkit-mask-position: center;
              mask-position: center;
    }
.caret {
  pointer-events: none;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  display: flex;
  align-items: center;
  padding-left: 8px;
  padding-right: 8px;
  color: #1e293b;
  color: var(--text-on-secondary);
}
form.inline .form-group,form.inline .file-input-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
form.inline .form-group .input {
    flex: 1 1 0%;
  }
form.inline .form-group .label {
    width: 25%;
  }
/* Fix flatpickr */
.flatpickr-current-month .flatpickr-monthDropdown-months {
  display: inline-block;
}
.dayContainer .flatpickr-day:hover,.dayContainer .flatpickr-day.today:hover,.dayContainer .flatpickr-day.selected:hover {
    background: #eee2ce;
    background: var(--base-bg-hover);
    border-color: #eee2ce;
    border-color: var(--base-bg-hover);
    color: #f16222;
    color: var(--text-primary-hover);
  }
.dayContainer .flatpickr-day.today {
    border-color: #ec1c24;
    border-color: var(--base-border-focus);
    color: #050707;
    color: var(--base-text);
  }
.dayContainer .flatpickr-day.selected,.dayContainer .flatpickr-day.selected:hover {
    background: #ec1c24;
    background: var(--bg-primary);
    border-color: #ec1c24;
    border-color: var(--bg-primary);
    color: #fff;
    color: var(--text-on-primary);
  }
.flatpickr-time .numInput.flatpickr-hour {
    font-weight: 400;
  }
/* Checkboxes, Radio Buttons, and Switches/Toggles */
.form-picker-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.form-picker-group input[type="checkbox"],.form-picker-group input[type='radio'] {
    margin-top: 4px;
  }
.form-picker-group label {
    display: block;
    margin-bottom: 0px;
    color: #050707;
    color: var(--base-text);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }
.form-picker-group:has( > .form-checkbox:disabled) label,.form-picker-group:has( > .form-checkbox:disabled) p,.form-picker-group:has( > [type="checkbox"]:disabled) label,.form-picker-group:has( > [type="checkbox"]:disabled) p,.form-picker-group:has( > .form-radio:disabled) label,.form-picker-group:has( > .form-radio:disabled) p,.form-picker-group:has( > [type="radio"]:disabled) label,.form-picker-group:has( > [type="radio"]:disabled) p {
    color: #9ca3af;
    color: var(--base-text-disabled);
    cursor: not-allowed;
  }
.form-picker-group.switch:has( > .form-checkbox:disabled) label {
      color: #9ca3af;
      color: var(--base-text-disabled);
      cursor: not-allowed;
    }
.form-picker-group.toggle:has( > .form-checkbox:disabled) label {
      color: #9ca3af;
      color: var(--base-text-disabled);
      cursor: not-allowed;
    }
.form-picker-group.switch:has( > [type="checkbox"]:disabled) label {
      color: #9ca3af;
      color: var(--base-text-disabled);
      cursor: not-allowed;
    }
.form-picker-group.toggle:has( > [type="checkbox"]:disabled) label {
      color: #9ca3af;
      color: var(--base-text-disabled);
      cursor: not-allowed;
    }
.form-picker-group.switch:has( > .form-checkbox:disabled) label::before {
      background: #cbd5e1;
      background: var(--bg-disabled-secondary);
      cursor: not-allowed;
    }
.form-picker-group.toggle:has( > .form-checkbox:disabled) label::before {
      background: #cbd5e1;
      background: var(--bg-disabled-secondary);
      cursor: not-allowed;
    }
.form-picker-group.switch:has( > [type="checkbox"]:disabled) label::before {
      background: #cbd5e1;
      background: var(--bg-disabled-secondary);
      cursor: not-allowed;
    }
.form-picker-group.toggle:has( > [type="checkbox"]:disabled) label::before {
      background: #cbd5e1;
      background: var(--bg-disabled-secondary);
      cursor: not-allowed;
    }
.form-picker-group.switch:has( > .form-checkbox:disabled) label::after {
      background: #e2e8f0;
      background: var(--bg-disabled);
      cursor: not-allowed;
    }
.form-picker-group.toggle:has( > .form-checkbox:disabled) label::after {
      background: #e2e8f0;
      background: var(--bg-disabled);
      cursor: not-allowed;
    }
.form-picker-group.switch:has( > [type="checkbox"]:disabled) label::after {
      background: #e2e8f0;
      background: var(--bg-disabled);
      cursor: not-allowed;
    }
.form-picker-group.toggle:has( > [type="checkbox"]:disabled) label::after {
      background: #e2e8f0;
      background: var(--bg-disabled);
      cursor: not-allowed;
    }
.form-picker-group.switch:has( > .form-checkbox:disabled:checked) label::before {
      background: #94a3b8;
      background: var(--bg-disabled-selected);
      cursor: not-allowed;
    }
.form-picker-group.toggle:has( > .form-checkbox:disabled:checked) label::before {
      background: #94a3b8;
      background: var(--bg-disabled-selected);
      cursor: not-allowed;
    }
.form-picker-group.switch:has( > [type="checkbox"]:disabled:checked) label::before {
      background: #94a3b8;
      background: var(--bg-disabled-selected);
      cursor: not-allowed;
    }
.form-picker-group.toggle:has( > [type="checkbox"]:disabled:checked) label::before {
      background: #94a3b8;
      background: var(--bg-disabled-selected);
      cursor: not-allowed;
    }
.switch,
.toggle {
  position: relative;
}
.switch input[type="checkbox"],.toggle input[type="checkbox"] {
    position: absolute;
    top: 2;
    left: 0;
    opacity: 0;
  }
.switch input[type="checkbox"]:checked + label:not(does-not-exist)::before {
          background: #ec1c24;
          background: var(--bg-primary);
        }
.toggle input[type="checkbox"]:checked + label:not(does-not-exist)::before {
          background: #ec1c24;
          background: var(--bg-primary);
        }
.switch input[type="checkbox"]:checked + div label::before {
          background: #ec1c24;
          background: var(--bg-primary);
        }
.toggle input[type="checkbox"]:checked + div label::before {
          background: #ec1c24;
          background: var(--bg-primary);
        }
.switch input[type="checkbox"]:checked + label:not(does-not-exist)::after {
          transform: translateX(26px);
        }
.toggle input[type="checkbox"]:checked + label:not(does-not-exist)::after {
          transform: translateX(26px);
        }
.switch input[type="checkbox"]:checked + div label::after {
          transform: translateX(26px);
        }
.toggle input[type="checkbox"]:checked + div label::after {
          transform: translateX(26px);
        }
.switch label,.toggle label {
    position: relative;
    padding-left: 64px;
  }
.switch label:hover,.toggle label:hover {
      cursor: pointer;
    }
.switch label:focus::before {
      outline: 2px solid #ec1c24;
      outline: 2px solid var(--base-border-focus);
      outline-offset: 2px;
    }
.toggle label:focus::before {
      outline: 2px solid #ec1c24;
      outline: 2px solid var(--base-border-focus);
      outline-offset: 2px;
    }
.switch label:focus-visible::before {
      outline: 2px solid #ec1c24;
      outline: 2px solid var(--base-border-focus);
      outline-offset: 2px;
    }
.toggle label:focus-visible::before {
      outline: 2px solid #ec1c24;
      outline: 2px solid var(--base-border-focus);
      outline-offset: 2px;
    }
.switch label::before {
      background: #eee2ce;
      background: var(--base-bg-high);
      position: absolute;
      top: 0;
      left: 0;
      height: 24px;
      width: 50px;
      content: "";
      border-radius: 24px;
      transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
      transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
      transition-duration: 200ms;
    }
.toggle label::before {
      background: #eee2ce;
      background: var(--base-bg-high);
      position: absolute;
      top: 0;
      left: 0;
      height: 24px;
      width: 50px;
      content: "";
      border-radius: 24px;
      transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
      transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
      transition-duration: 200ms;
    }
.switch label::after {
      position: absolute;
      top: 2px;
      left: 2px;
      width: 20px;
      height: 20px;
      box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
      background: #eee2ce;
      background: var(--base-bg-base);
      border-radius: 9999px;
      content: "";
      transition-property: transform;
      transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
      transition-duration: 200ms;
    }
.toggle label::after {
      position: absolute;
      top: 2px;
      left: 2px;
      width: 20px;
      height: 20px;
      box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
      background: #eee2ce;
      background: var(--base-bg-base);
      border-radius: 9999px;
      content: "";
      transition-property: transform;
      transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
      transition-duration: 200ms;
    }
.switch p,.toggle p {
    position: relative;
    padding-left: 64px;
  }
.switch-right,
.toggle-right {
  position: relative;
}
.switch-right input[type="checkbox"],.toggle-right input[type="checkbox"] {
    position: absolute;
    top: 2px;
    left: 120px;
    opacity: 0;
  }
.switch-right:has(.form-checkbox:checked) label::before {
      background: #ec1c24;
      background: var(--bg-primary);
    }
.toggle-right:has(.form-checkbox:checked) label::before {
      background: #ec1c24;
      background: var(--bg-primary);
    }
.switch-right:has([type="checkbox"]:checked) label::before {
      background: #ec1c24;
      background: var(--bg-primary);
    }
.toggle-right:has([type="checkbox"]:checked) label::before {
      background: #ec1c24;
      background: var(--bg-primary);
    }
.switch-right:has(.form-checkbox:checked) label::after {
      transform: translateX(26px);
    }
.toggle-right:has(.form-checkbox:checked) label::after {
      transform: translateX(26px);
    }
.switch-right:has([type="checkbox"]:checked) label::after {
      transform: translateX(26px);
    }
.toggle-right:has([type="checkbox"]:checked) label::after {
      transform: translateX(26px);
    }
.switch-right label,.toggle-right label {
    position: relative;
    padding-right: 64px;
  }
.switch-right label:hover,.toggle-right label:hover {
      cursor: pointer;
    }
.switch-right label:focus::before {
      outline: 2px solid #ec1c24;
      outline: 2px solid var(--base-border-focus);
      outline-offset: 2px;
    }
.toggle-right label:focus::before {
      outline: 2px solid #ec1c24;
      outline: 2px solid var(--base-border-focus);
      outline-offset: 2px;
    }
.switch-right label:focus-visible::before {
      outline: 2px solid #ec1c24;
      outline: 2px solid var(--base-border-focus);
      outline-offset: 2px;
    }
.toggle-right label:focus-visible::before {
      outline: 2px solid #ec1c24;
      outline: 2px solid var(--base-border-focus);
      outline-offset: 2px;
    }
.switch-right label::before {
      background: #eee2ce;
      background: var(--base-bg-high);
      position: absolute;
      top: 0;
      right: 0;
      height: 24px;
      width: 50px;
      content: "";
      border-radius: 24px;
      transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
      transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
      transition-duration: 200ms;
    }
.toggle-right label::before {
      background: #eee2ce;
      background: var(--base-bg-high);
      position: absolute;
      top: 0;
      right: 0;
      height: 24px;
      width: 50px;
      content: "";
      border-radius: 24px;
      transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
      transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
      transition-duration: 200ms;
    }
.switch-right label::after {
      position: absolute;
      top: 2px;
      right: 28px;
      width: 20px;
      height: 20px;
      box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
      background: #eee2ce;
      background: var(--base-bg-base);
      border-radius: 9999px;
      content: "";
      transition-property: transform;
      transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
      transition-duration: 200ms;
    }
.toggle-right label::after {
      position: absolute;
      top: 2px;
      right: 28px;
      width: 20px;
      height: 20px;
      box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
      background: #eee2ce;
      background: var(--base-bg-base);
      border-radius: 9999px;
      content: "";
      transition-property: transform;
      transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
      transition-duration: 200ms;
    }
.switch-right p,.toggle-right p {
    position: relative;
    padding-right: 64px;
  }
.form-checkbox,
[type="checkbox"],
.form-radio,
[type='radio'] {
  background: #eee2ce;
  background: var(--base-bg-base);
  border: 1px solid #f6a081;
  border: 1px solid var(--base-border-secondary);
  cursor: pointer;
  margin-bottom: 0;
}
.form-checkbox:focus-visible {
    outline: 2px solid #ec1c24;
    outline: 2px solid var(--base-border-focus);
    outline-offset: 2px;
  }
[type="checkbox"]:focus-visible {
    outline: 2px solid #ec1c24;
    outline: 2px solid var(--base-border-focus);
    outline-offset: 2px;
  }
.form-radio:focus-visible {
    outline: 2px solid #ec1c24;
    outline: 2px solid var(--base-border-focus);
    outline-offset: 2px;
  }
[type='radio']:focus-visible {
    outline: 2px solid #ec1c24;
    outline: 2px solid var(--base-border-focus);
    outline-offset: 2px;
  }
.form-checkbox:focus,[type="checkbox"]:focus,.form-radio:focus,[type='radio']:focus {
    outline: 2px solid #ec1c24;
    outline: 2px solid var(--base-border-focus);
    outline-offset: 2px;
  }
.form-checkbox:checked {
    color: #ec1c24;
    color: var(--bg-primary);
  }
[type="checkbox"]:checked {
    color: #ec1c24;
    color: var(--bg-primary);
  }
.form-radio:checked {
    color: #ec1c24;
    color: var(--bg-primary);
  }
[type='radio']:checked {
    color: #ec1c24;
    color: var(--bg-primary);
  }
.form-checkbox:not(:checked):hover {
    border: 2px solid #f16222;
    border: 2px solid var(--border-primary);
  }
[type="checkbox"]:not(:checked):hover {
    border: 2px solid #f16222;
    border: 2px solid var(--border-primary);
  }
.form-radio:not(:checked):hover {
    border: 2px solid #f16222;
    border: 2px solid var(--border-primary);
  }
[type='radio']:not(:checked):hover {
    border: 2px solid #f16222;
    border: 2px solid var(--border-primary);
  }
.form-checkbox:disabled {
    border: 1px solid #cbd5e1;
    border: 1px solid var(--border-disabled);
    background: #e2e8f0;
    background: var(--bg-disabled);
    cursor: not-allowed;
  }
[type="checkbox"]:disabled {
    border: 1px solid #cbd5e1;
    border: 1px solid var(--border-disabled);
    background: #e2e8f0;
    background: var(--bg-disabled);
    cursor: not-allowed;
  }
.form-radio:disabled {
    border: 1px solid #cbd5e1;
    border: 1px solid var(--border-disabled);
    background: #e2e8f0;
    background: var(--bg-disabled);
    cursor: not-allowed;
  }
[type='radio']:disabled {
    border: 1px solid #cbd5e1;
    border: 1px solid var(--border-disabled);
    background: #e2e8f0;
    background: var(--bg-disabled);
    cursor: not-allowed;
  }
.form-checkbox:disabled:checked {
      border: 4px solid #94a3b8;
      border: 4px solid var(--bg-disabled-selected);
      color: #e2e8f0;
      color: var(--bg-disabled);
    }
[type="checkbox"]:disabled:checked {
      border: 4px solid #94a3b8;
      border: 4px solid var(--bg-disabled-selected);
      color: #e2e8f0;
      color: var(--bg-disabled);
    }
.form-radio:disabled:checked {
      border: 4px solid #94a3b8;
      border: 4px solid var(--bg-disabled-selected);
      color: #e2e8f0;
      color: var(--bg-disabled);
    }
[type='radio']:disabled:checked {
      border: 4px solid #94a3b8;
      border: 4px solid var(--bg-disabled-selected);
      color: #e2e8f0;
      color: var(--bg-disabled);
    }
.form-checkbox:disabled:checked:hover {
      border: 4px solid #94a3b8;
      border: 4px solid var(--bg-disabled-selected);
      color: #e2e8f0;
      color: var(--bg-disabled);
    }
[type="checkbox"]:disabled:checked:hover {
      border: 4px solid #94a3b8;
      border: 4px solid var(--bg-disabled-selected);
      color: #e2e8f0;
      color: var(--bg-disabled);
    }
.form-radio:disabled:checked:hover {
      border: 4px solid #94a3b8;
      border: 4px solid var(--bg-disabled-selected);
      color: #e2e8f0;
      color: var(--bg-disabled);
    }
[type='radio']:disabled:checked:hover {
      border: 4px solid #94a3b8;
      border: 4px solid var(--bg-disabled-selected);
      color: #e2e8f0;
      color: var(--bg-disabled);
    }
.form-checkbox:disabled:hover {
      border: 1px solid #cbd5e1;
      border: 1px solid var(--border-disabled);
    }
[type="checkbox"]:disabled:hover {
      border: 1px solid #cbd5e1;
      border: 1px solid var(--border-disabled);
    }
.form-radio:disabled:hover {
      border: 1px solid #cbd5e1;
      border: 1px solid var(--border-disabled);
    }
[type='radio']:disabled:hover {
      border: 1px solid #cbd5e1;
      border: 1px solid var(--border-disabled);
    }
.form-checkbox,
[type="checkbox"] {
  border-radius: 0;
}
.form-checkbox:disabled:checked {
      background-color: #94a3b8;
      background-color: var(--bg-disabled-selected);
      background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      background-size: 14px 14px;
      color: #e2e8f0;
      color: var(--text-on-disabled-selected);
      cursor: not-allowed;
    }
[type="checkbox"]:disabled:checked {
      background-color: #94a3b8;
      background-color: var(--bg-disabled-selected);
      background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      background-size: 14px 14px;
      color: #e2e8f0;
      color: var(--text-on-disabled-selected);
      cursor: not-allowed;
    }
.form-checkbox:disabled:checked:hover {
      background-color: #94a3b8;
      background-color: var(--bg-disabled-selected);
      background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      background-size: 14px 14px;
      color: #e2e8f0;
      color: var(--text-on-disabled-selected);
      cursor: not-allowed;
    }
[type="checkbox"]:disabled:checked:hover {
      background-color: #94a3b8;
      background-color: var(--bg-disabled-selected);
      background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      background-size: 14px 14px;
      color: #e2e8f0;
      color: var(--text-on-disabled-selected);
      cursor: not-allowed;
    }
/*File Inputs*/
.file-input-group p.label {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #374151;
    color: var(--base-text-secondary);
  }
.file-input-group p.label span {
      font-family: "Noto Sans";
      font-size: 14px;
      font-weight: 400;
      line-height: 21px;
      color: #dc2626;
      color: var(--icon-on-danger-secondary);
    }
.file-input-group:has( > [type="file"]:required) p.label::after {
    content: "*";
    color: #dc2626;
    color: var(--icon-on-danger-secondary);
    margin-left: -2px;
  }
.file-input-group:has( > [type="file"]:disabled) label,.file-input-group:has( > [type="file"]:disabled) p {
    opacity: 0.6;
    cursor: not-allowed;
  }
.file-input-group input[type="file"] {
    cursor: pointer;
    opacity: 0;
    display: inline-block;
    overflow: hidden;
    position: absolute;
    width: 1px;
    height: auto;
  }
.file-input-group label {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 20px;
    transition: ease 0.3s background, ease 0.3s transform, ease 0.2s color;
  }
.input-file {
  cursor: pointer;
  opacity: 0;
  display: inline-block;
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: auto;
}
.input-file  + label {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 20px;
    transition: ease 0.3s background, ease 0.3s transform, ease 0.2s color;
  }
/* A couple handy classes for responsive YouTube and other iframe embeds */
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
[data-controller="stripe--embedded-checkout"] iframe{
  border-radius: 0.5rem;
}
/* Prevent scrolling while dialog is open */
body:has(dialog[open]) {
  filter: blur(4px);
  overflow: hidden;
}
/* Slideover animations */
dialog.slideover[open] {
  animation: slide-in-from-right 200ms forwards ease-in-out;
}
dialog.slideover[closing] {
  pointer-events: none;
  animation: slide-out-to-right 200ms forwards ease-in-out;
}
dialog.modal {
  border-radius: 8px;
  max-height: 100vh;
  width: 100%;
}
dialog.modal[open] {
    animation: fadeIn 200ms forwards;
  }
dialog.modal[closing] {
    animation: fadeOut 200ms forwards;
  }
dialog.modal.modal::backdrop {
    background: #050707;
    background: var(--base-bg-backdrop);
    opacity: 0.5;
  }
dialog.modal.modal-sm {
    max-width: 384px;
  }
dialog.modal.modal-md {
    max-width: 448px;
  }
dialog.modal.modal-lg {
    max-width: 512px;
  }
dialog.modal.modal-full {
    border-radius: 0px;
    max-height: 100%;
    height: 100%;
    max-width: 100%;
    margin: 0px;
  }
dialog.modal .modal-card {
    position: relative;
    padding: 24px;
    background: #fff;
    background: var(--base-bg-low);
  }
dialog.modal .modal-card.full {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
dialog.modal .modal-card.full div:first-of-type {
        align-items: flex-start;
        justify-content: center;
        display: flex;
        flex-direction: column;
        width: 66.666667%;
        margin-left: auto;
        margin-right: auto;
      }
dialog.modal .modal-card.full div:last-child {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 16px;
        margin-left: auto;
        margin-right: auto;
        gap: 8px;
        width: 66.666667%;
      }
dialog.modal .modal-card button[type="button"] {
      position: absolute;
      right: 16px;
      top: 16px;
      border-radius: 8px;
      color: #2883c4;
      color: var(--base-icon);
      outline: 2px solid transparent;
      outline-offset: 2px;
    }
dialog.modal .modal-card button[type="button"]:hover {
        cursor: pointer;
        color: #374151;
        color: var(--base-text-secondary);
      }
dialog.modal .modal-card button[type="button"]:disabled {
        pointer-events: none;
      }
dialog.modal .modal-card .modal-title {
      font-size: 18px;
      line-height: 28px;
      margin-bottom: 8px;
      font-weight: 700;
      color: #050707;
      color: var(--base-text);
    }
dialog.modal .modal-card .modal-body {
      font-size: 14px;
      font-weight: 400;
      line-height: 20px;
      margin-bottom: 8px;
      color: #050707;
      color: var(--base-text);
    }
dialog.modal .modal-card .modal-actions {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      flex-wrap: wrap;
      margin-top: 16px;
      gap: 8px;
    }
.nav-link {
  white-space: nowrap;
  padding: 4px 8px;
  color: #050707;
  color: var(--base-text);
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.nav-link.active {
    border-bottom: 4px solid #f16222;
    border-bottom: 4px solid var(--border-primary);
    color: #ec1c24;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
  }
.nav-link:focus {
    color: #374151;
    color: var(--base-text-secondary);
  }
@media (min-width: 1024px) {
  .nav-link {
    display: inline-flex;
    margin: 0px 16px 0px 0px;
    line-height: 40px;
  }
}
.dropdown-menu {
  min-width: 100%;
}
@media (min-width: 1024px) {
  .dropdown-menu {
    min-width: 200px;
  }
}
/* Menu component */
nav.menu-component {
  max-width: 275px;
  min-width: 260px;
  background-color: white;
  border: 1px solid var(--Base-base-border-tertiary);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;

  /* Main list */
}
nav.menu-component  > ul.menu-list {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
  }
nav.menu-component > ul.menu-list  > li.menu-section {
      margin: 0;
      padding: 8px 0px;
    }
nav.menu-component > ul.menu-list > li.menu-section:not(:last-child) {
        border-bottom: 1px solid #eee2ce;
        border-bottom: 1px solid var(--base-border-tertiary);
      }
/* Section headers */
nav.menu-component > ul.menu-list > li.menu-section  > h2.menu-section-heading {
        font-size: 14px;
        color: #6b7280;
        color: var(--base-text-tertiary);
        padding: 12px 24px 4px 28px;
        font-weight: 600;
        line-height: 20px;
        margin: 0px;
        text-transform: uppercase;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
nav.menu-component > ul.menu-list > li.menu-section > h2.menu-section-heading  > a {
          color: #6b7280;
          color: var(--base-text-tertiary);
          padding: 0px;
        }
nav.menu-component > ul.menu-list > li.menu-section  > ul.menu-sub-list {
        list-style-type: none;
        margin: 0px;
        padding: 0px;
      }
nav.menu-component > ul.menu-list > li.menu-section > ul.menu-sub-list li {
          padding: 0px 0px;
        }
nav.menu-component > ul.menu-list > li.menu-section > ul.menu-sub-list li a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px 10px 28px;
            color: #050707;
            color: var(--base-text);
            -webkit-text-decoration: none;
            text-decoration: none;
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
          }
nav.menu-component > ul.menu-list > li.menu-section > ul.menu-sub-list li a:hover {
              background-color: #eee2ce;
              background-color: var(--base-bg-high);
              color: #374151;
              color: var(--base-text-secondary);
            }
nav.menu-component > ul.menu-list > li.menu-section > ul.menu-sub-list li a svg {
              color: #2883c4;
              color: var(--base-icon);
              width: 20px;
            }
nav.menu-component > ul.menu-list > li.menu-section > ul.menu-sub-list li a * + svg {
              margin-left: auto;
            }
nav.menu-component > ul.menu-list > li.menu-section > ul.menu-sub-list li form button {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 16px 12px 28px;
            color: #050707;
            color: var(--base-text);
            -webkit-text-decoration: none;
            text-decoration: none;
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
            width: 100%;
          }
nav.menu-component > ul.menu-list > li.menu-section > ul.menu-sub-list li form button:hover {
              background-color: #eee2ce;
              background-color: var(--base-bg-high);
              color: #374151;
              color: var(--base-text-secondary);
            }
nav.menu-component > ul.menu-list > li.menu-section > ul.menu-sub-list li form button svg {
              color: #2883c4;
              color: var(--base-icon);
            }
nav.menu-component > ul.menu-list > li.menu-section > ul.menu-sub-list li form button * + svg {
              margin-left: auto;
            }
@media (min-width: 1024px) {
  nav.menu-component {
    min-width: 240px;
  }
}
/*Sidebar Component*/
.sidebar {
  width: 350px;
  background-color: #fff;
  background-color: var(--base-bg-low);
  padding-top: 16px;
}
.sidebar .btn-container {
    padding: 0px 16px;
  }
.sidebar nav {
    padding: 16px 0px;
  }
.sidebar h2 {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    margin-top: 0;
    color: #6b7280;
    color: var(--base-text-tertiary);
    padding: 0px 16px 12px 24px;
  }
.sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
.sidebar ul  > * + * {
      margin-top: 4px;
    }
.sidebar nav:not(:first-of-type) {
    border-top: 1px solid #eee2ce;
    border-top: 1px solid var(--base-border-tertiary);
  }
.sidebar li {
    padding: 12px 16px 12px 24px;
  }
.sidebar li:hover {
      background: #eee2ce;
      background: var(--base-bg-hover);
    }
.sidebar li:has(a.active) {
      background: #eee2ce;
      background: var(--base-bg-hover);
      position: relative;
    }
.sidebar li:has(a.active)::before {
        background-color: #f16222;
        background-color: var(--border-primary);
        bottom: 0;
        content: '';
        width: 4px;
        left: 0;
        position: absolute;
        height: 100%;
      }
.sidebar a {
    -webkit-text-decoration: none;
    text-decoration: none;
    color: #050707;
    color: var(--base-text);
    display: flex;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    align-items: center;
  }
.sidebar a:hover {
      color: #374151;
      color: var(--base-text-secondary);
    }
.sidebar a.active {
      color: #ec1c24;
      color: var(--text-primary);
    }
.sidebar a.active .icon {
        color: #ec1c24;
        color: var(--text-primary);
      }
.sidebar .icon {
    margin-right: 8px;
    display: flex;
    align-items: center;
    color: #2883c4;
    color: var(--base-icon);
  }
.sidebar .icon:hover {
      color: #2883c4;
      color: var(--base-icon);
    }
.sidebar .icon svg {
      width: 20px;
      height: 20px;
    }
.sidebar .cta-btn {
    display: block;
    width: 100%;
    padding: 8px 12px;
    background-color: #ec1c24;
    background-color: var(--bg-primary);
    color: #fff;
    color: var(--text-on-primary);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
/* Sidebar "container" variant */
.sidebar-container {
  border: 1px solid #eee2ce;
  border: 1px solid var(--base-border-tertiary);
  border-radius: 4px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}
/*Vertical Navigation Component*/
.vertical-nav {
  max-width: 270px;
  border-right: 1px solid #eee2ce;
  border-right: 1px solid var(--base-border-tertiary);
  background: #fff;
  background: var(--base-bg-low);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  height: 100%;
}
.vertical-nav .logo {
    padding: 32px 24px 16px;
    display: block;
    font-size: 20px;
    font-weight: bold;
    -webkit-text-decoration: none;
    text-decoration: none;
  }
.vertical-nav .logo svg {
      color: #050707;
      color: var(--base-text);
    }
.vertical-nav .user-profile {
  display: flex;
  align-items: center;
  padding: 12px 24px;
  cursor: pointer;
  position: relative;
}
.vertical-nav .user-profile .user-info {
    border: 1px solid #fff;
    border: 1px solid var(--base-bg-low);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 4px 8px;
  }
.vertical-nav .user-profile .user-info:hover {
      border: 1px solid #eee2ce;
      border: 1px solid var(--base-border-tertiary);
      background: #eee2ce;
      background: var(--base-bg-hover);
    }
.vertical-nav .user-profile .user-info  > div {
      display: flex;
      align-items: center;
    }
.vertical-nav .user-profile .user-info svg {
      width: 20px;
      height: 20px;
      justify-self: end;
    }
.vertical-nav .user-profile .user-info .avatar {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      margin-right: 8px;
    }
.vertical-nav .user-profile .user-info .user-name {
      color: #050707;
      color: var(--base-text);
      flex: 1;
      font-size: 14px;
      font-weight: 400;
      line-height: 20px;
    }
.vertical-nav .user-profile .user-info .user-email {
      color: #6b7280;
      color: var(--base-text-tertiary);
      font-size: 12px;
      font-weight: 400;
      line-height: 16px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      width: 140px;
    }
.vertical-nav .user-profile .profile-popup {
    border: 1px solid #eee2ce;
    border: 1px solid var(--base-border-tertiary);
    position: absolute;
    left: 40px;
    top: 50px;
    z-index: 1000;
  }
.vertical-nav .search-container {
  padding: 16px 24px;
  margin: 0px;
}
.vertical-nav .nav-section {
  padding: 32px 0px 24px 0px;
}
.vertical-nav .nav-section:first-of-type {
    padding: 16px 0px 24px 0px;
  }
.vertical-nav .nav-section:not(:last-child) {
    border-bottom: 1px solid #eee2ce;
    border-bottom: 1px solid var(--base-border-tertiary);
  }
.vertical-nav .nav-section .section-header {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #6b7280;
    color: var(--base-text-tertiary);
    padding: 0px 16px 12px 24px;
  }
.vertical-nav .nav-section .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
.vertical-nav .nav-section .nav-list li {
      display: flex;
      align-items: center;
      width: 100%;
      min-width: 0;
    }
.vertical-nav .nav-section .nav-list li svg {
        margin-left: 24px;
        margin-right: 8px;
        width: 24px;
        height: 24px;
        color: #2883c4;
        color: var(--base-icon);
      }
.vertical-nav .nav-section .nav-list li:has(a.active) {
        background: #eee2ce;
        background: var(--base-bg-hover);
        position: relative;
      }
.vertical-nav .nav-section .nav-list li:has(a.active)::before {
          background-color: #f16222;
          background-color: var(--border-primary);
          bottom: 0;
          content: '';
          width: 4px;
          left: 0;
          position: absolute;
          height: 100%;
        }
.vertical-nav .nav-item {
  display: flex;
  align-items: center;
  padding: 12px 24px 12px 0px;
  color: #050707;
  color: var(--base-text);
  -webkit-text-decoration: none;
  text-decoration: none;
  width: 100%;
  min-width: 0;
}
.vertical-nav .nav-item:hover {
    background: #eee2ce;
    background: var(--base-bg-hover);
  }
.vertical-nav .nav-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    flex: 1;
  }
.left-nav__sub-nav  > button {
    color: #050707;
    color: var(--base-text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 24px;
  }
.left-nav__sub-nav > button:hover {
      background: #eee2ce;
      background: var(--base-bg-hover);
    }
.left-nav__sub-nav > button  > div {
      display: flex;
      align-items: center;
    }
.left-nav__sub-nav > button > div svg {
        color: #2883c4;
        color: var(--base-icon);
        width: 24px;
        height: 24px;
        margin-right: 8px;
      }
.left-nav__sub-nav > button:focus  > svg {
        transform: rotate(180deg);
      }
.left-nav__sub-nav > button  > svg {
      height: 20px;
      width: 20px;
      margin-left: 4px;
    }
.left-nav__sub-nav .left-nav__sub-nav-dropdown {
    background: #eee2ce;
    background: var(--base-bg-base);
  }
.left-nav__sub-nav .left-nav__sub-nav-dropdown ul {
      list-style: none;
      width: 100%;
    }
.left-nav__sub-nav .left-nav__sub-nav-dropdown ul a.nav-item {
        display: block;
        padding: 12px 24px 12px 56px;
        color: #050707;
        color: var(--base-text);
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
.left-nav__sub-nav .left-nav__sub-nav-dropdown ul a.nav-item.active {
          color: #ec1c24;
          color: var(--text-primary);
          font-weight: 600;
        }
/* Account menu dropdown fixes */
.account-menu {
  position: relative;
  display: flex !important;
  align-items: center !important;
}
.account-menu:hover {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
}
.account-menu button,
#profile-sidebar-btn,
button[aria-label='Profile Menu'] {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  padding: 2px !important;
  border-radius: 9999px !important;
  border: none !important;
  background: transparent !important;
  cursor: pointer !important;
  transition: none !important;
  transform: none !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  min-width: 40px !important;
  min-height: 40px !important;
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  position: relative !important;
  vertical-align: middle !important;
}
.account-menu button:hover,
#profile-sidebar-btn:hover,
button[aria-label='Profile Menu']:hover {
  background-color: transparent !important;
  transform: none !important;
  scale: 1 !important;
  /* Re-assert all properties to prevent displacement - must match exactly */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  padding: 2px !important;
  border-radius: 9999px !important;
  border: none !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  min-width: 40px !important;
  min-height: 40px !important;
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  position: relative !important;
  vertical-align: middle !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
}
/* Prevent avatar from enlarging or moving on hover */
.account-menu button:hover img,
.account-menu button:hover svg,
.account-menu button:hover span,
#profile-sidebar-btn:hover img,
#profile-sidebar-btn:hover svg,
#profile-sidebar-btn:hover span,
.account-menu button:hover * {
  transform: none !important;
  scale: 1 !important;
  width: 36px !important;
  height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  margin: 0 !important;
  padding: 0 !important;
  position: static !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  flex-basis: 36px !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  aspect-ratio: 1 / 1 !important;
}
/* Additional rule to prevent any scale transforms on the button container */
.account-menu button,
#profile-sidebar-btn {
  transform: scale(1) !important;
  transform-origin: center center !important;
}
.account-menu button:hover,
#profile-sidebar-btn:hover {
  transform: scale(1) !important;
  transform-origin: center center !important;
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  vertical-align: middle !important;
}
/* Ensure avatar maintains size and position */
.account-menu button img,
.account-menu button span,
#profile-sidebar-btn img,
#profile-sidebar-btn span {
  width: 36px !important;
  height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  transform: scale(1) !important;
  transform-origin: center center !important;
  transition: none !important;
  margin: 0 !important;
  padding: 0 !important;
  position: static !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  flex-basis: 36px !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  aspect-ratio: 1 / 1 !important;
}
/* Ensure avatar image doesn't shrink on hover */
.account-menu button:hover img,
.account-menu button:hover span,
#profile-sidebar-btn:hover img,
#profile-sidebar-btn:hover span,
.account-menu button:hover > *,
#profile-sidebar-btn:hover > * {
  width: 36px !important;
  height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  transform: scale(1) !important;
  transform-origin: center center !important;
  margin: 0 !important;
  padding: 0 !important;
  position: static !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  flex-basis: 36px !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  aspect-ratio: 1 / 1 !important;
  transition: none !important;
}
/* Prevent button itself from scaling or moving */
#profile-sidebar-btn,
.account-menu button#profile-sidebar-btn,
.account-menu button {
  transform: scale(1) !important;
  transform-origin: center center !important;
  transition: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 2px !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  min-width: 40px !important;
  min-height: 40px !important;
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  border-radius: 9999px !important;
  background-color: transparent !important;
  border: none !important;
  cursor: pointer !important;
}
#profile-sidebar-btn:hover,
.account-menu button#profile-sidebar-btn:hover,
.account-menu button:hover {
  transform: scale(1) !important;
  transform-origin: center center !important;
  scale: 1 !important;
  /* Re-assert all properties - must match exactly */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 2px !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  min-width: 40px !important;
  min-height: 40px !important;
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  border-radius: 9999px !important;
  background-color: transparent !important;
  border: none !important;
  cursor: pointer !important;
}
.account-menu .dropdown-menu {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 0;
  z-index: 50;
  min-width: 260px;
  max-width: 275px;
}
/* Ensure dropdown is visible when shown */
.account-menu .dropdown-menu:not(.hidden) {
  display: block !important;
}
/* Fix for Tailwind's hidden class */
.dropdown-menu.hidden {
  display: none !important;
}
.dropdown-menu:not(.hidden) {
  display: block !important;
}
/* Profile dropdown menu styling with white background */
.account-menu .dropdown-menu {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}
/* Ensure the menu component inside dropdown has white background */
.account-menu .dropdown-menu .menu-component {
  background-color: white !important;
}
/* Target the specific profile dropdown menu div - more aggressive approach */
#profile-dropdown-menu {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  top: 100% !important;
  bottom: auto !important;
  margin-top: 0 !important;
}
/* Removed dropdown-menu class from HTML, so this rule is no longer needed */
/* Also target the parent account-menu container */
.account-menu {
  background: transparent !important;
}
/* Force transparency on all child elements */
#profile-dropdown-menu * {
  background: transparent !important;
  background-color: transparent !important;
}
/* But allow the menu-component to have its own background */
#profile-dropdown-menu .menu-component {
  background: #eee2ce !important;
  background: var(--base-bg-base) !important;
  background-color: #eee2ce !important;
  background-color: var(--base-bg-base) !important;
  border: 1px solid #eee2ce !important;
  border: 1px solid var(--base-border-tertiary) !important;
  border-radius: 8px !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}
/* Nuclear option - use pseudo-elements to override any background */
#profile-dropdown-menu::before,
#profile-dropdown-menu::after {
  display: none !important;
  background: transparent !important;
  background-color: transparent !important;
}
/* Try to override any inherited background from parent elements */
.account-menu #profile-dropdown-menu {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}
.account-menu .menu-section-heading {
  color: #374151 !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  margin-bottom: 8px !important;
  padding: 4px 0 !important;
}
.account-menu .menu-sub-list li {
  background-color: transparent !important;
}
.account-menu .menu-sub-list li:hover {
  background-color: transparent !important;
}
.account-menu .menu-sub-list li a,
.account-menu .menu-sub-list li .sign-out-button {
  color: #374151 !important; /* gray-700 instead of orange */
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
  display: block !important;
  padding: 8px 12px 8px 20px !important;
  margin: 2px 0 !important;
  border-radius: 4px !important;
  transition: all 0.2s ease !important;
  font-size: 14px !important;
  line-height: 20px !important;
  background-color: transparent !important;
}
.account-menu .menu-sub-list li a:hover,
.account-menu .menu-sub-list li .sign-out-button:hover {
  color: #111827 !important; /* gray-900 on hover */
  background-color: #eee2ce !important;
  background-color: var(--base-bg-hover) !important;
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
}
.account-menu .menu-sub-list li a:focus,
.account-menu .menu-sub-list li .sign-out-button:focus {
  outline: 2px solid #374151 !important; /* gray-700 instead of orange */
  outline-offset: 2px !important;
}
/* Sign out button styling to match menu items */
.sign-out-button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  color: #374151 !important; /* gray-700 instead of orange */
  -webkit-text-decoration: none;
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: left;
  font-size: 14px;
  line-height: 20px;
}
.sign-out-button:hover {
  color: inherit !important;
  background-color: transparent !important;
}
.sign-out-button:focus {
  outline: none;
  color: #e55a1e !important;
  background-color: #eee2ce !important;
  background-color: var(--base-bg-hover) !important;
}
/* Ensure the form containing the sign out button displays properly */
.menu-sub-list li form {
  display: inline;
  width: 100%;
}
.menu-sub-list li form .sign-out-button {
  padding: 8px 12px;
  margin: 0;
  border-radius: 4px;
}
/* Ensure account name in dropdown has no hover background and no border */
.account-menu .menu-section-heading {
  background: white !important;
  border: none !important;
  color: #6b7280 !important;
  color: var(--base-text-tertiary) !important;
  padding: 12px 24px 4px 24px !important;
}
/* Removed hover effect */
/* Remove the conflicting override styles - let the beige hover work */
/* Profile Sidebar Styles */
.profile-sidebar {
  box-shadow: -4px 0 6px -1px rgba(0, 0, 0, 0.1),
    -2px 0 4px -1px rgba(0, 0, 0, 0.06);
}
.profile-sidebar .flex-1 {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 80px); /* Account for header height */
}
/* Smooth transitions for sidebar */
.profile-sidebar {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
/* Backdrop fade in/out */
#sidebar-backdrop {
  transition: opacity 0.3s ease-in-out;
}
/* Mobile responsive sidebar */
@media (max-width: 640px) {
  .profile-sidebar {
    width: 100vw;
    max-width: 320px;
  }
}
/* Hover effects for sidebar links */
.profile-sidebar a:hover,
.profile-sidebar button:hover {
  transform: none;
  transition: none;
}
/* ============================================
   PROFILE SIDEBAR - CLEAN REBUILD
   ============================================ */
/* Base link styles - all properties locked */
#profile-sidebar nav a *,
#profile-sidebar li a * {
  /* Layout - locked for child elements only */
  display: flex !important;
  align-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
  width: auto !important;
  box-sizing: border-box !important;
}
#profile-sidebar nav a,
#profile-sidebar li a,
#profile-sidebar nav a.flex.items-center.text-gray-700,
#profile-sidebar li a.flex.items-center.text-gray-700,
#profile-sidebar a {
  /* Layout - locked for links (margins/padding handled by rule below) */
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  /* Ensure consistent hover area */
  position: relative !important;
  z-index: 1 !important;
  min-height: 44px !important;

  /* Typography - locked */
  color: #374151 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 20px !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
  -webkit-text-decoration: none !important;
  text-decoration: none !important;

  /* Visual - locked */
  background-color: transparent !important;
  background: transparent !important;
  background-image: none !important;
  border: none !important;
  border-radius: 8px !important;
  /* Force opacity to 1 to prevent any fade effects */
  opacity: 1 !important;

  /* Behavior - no transitions - override ALL possible transition sources */
  transform: none !important;
  transition: none !important;
  animation: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  -ms-transition: none !important;
  transition-property: none !important;
  transition-duration: 0s !important;
  transition-timing-function: none !important;
  transition-delay: 0s !important;
  -webkit-animation: none !important;
  -moz-animation: none !important;
  -o-animation: none !important;
}
#profile-sidebar a * {
  color: #374151 !important;
  font-weight: 400 !important;
  font-size: inherit !important;
  line-height: inherit !important;
  transition: none !important;
  transform: none !important;
  letter-spacing: normal !important;
  word-spacing: normal !important;
  margin: 0 !important;
  padding: 0 !important;
  background-color: transparent !important;
  background: transparent !important;
}
#profile-sidebar a span,
#profile-sidebar a:hover span,
#profile-sidebar nav a span,
#profile-sidebar nav a:hover span,
#profile-sidebar li a span,
#profile-sidebar li a:hover span {
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  line-height: 20px !important;
  height: 20px !important;
  min-height: 20px !important;
  max-height: 20px !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  letter-spacing: normal !important;
  word-spacing: normal !important;
  transform: none !important;
  transition: none !important;
  position: static !important;
  vertical-align: baseline !important;
  box-sizing: border-box !important;
  background-color: transparent !important;
  background: transparent !important;
  background-image: none !important;
  width: auto !important;
  min-width: auto !important;
  max-width: none !important;
}
/* Hover state - ONLY background changes, everything else identical */
/* Use :hover on the link, but ensure it applies to the entire link area */
#profile-sidebar nav a:hover,
#profile-sidebar li a:hover,
#profile-sidebar nav a.flex.items-center.text-gray-700:hover,
#profile-sidebar li a.flex.items-center.text-gray-700:hover,
#profile-sidebar a:hover,
#profile-sidebar a.flex.items-center.text-gray-700:hover {
  /* ONLY change background - ensure no duplicate backgrounds */
  /* Use rgb() instead of rgba() to prevent opacity transitions */
  background-color: rgb(243, 244, 246) !important;
  background: rgb(243, 244, 246) !important;
  background-image: none !important;
  /* Force opacity to 1 to prevent any fade */
  opacity: 1 !important;

  /* Re-assert ALL properties to prevent any movement */
  display: flex !important;
  align-items: center !important;
  /* Padding and margins handled by full-width rule below */
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  color: #374151 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 20px !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
  border: none !important;
  border-radius: 8px !important;
  transform: none !important;
  /* Remove ALL transitions - override every possible source */
  transition: none !important;
  animation: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  -ms-transition: none !important;
  transition-property: none !important;
  transition-duration: 0s !important;
  transition-timing-function: none !important;
  transition-delay: 0s !important;
  /* Ensure the entire link area triggers hover consistently */
  position: relative !important;
  z-index: 1 !important;
  /* Fill entire area to prevent gaps */
  min-height: 44px !important;
}
/* Ensure child elements don't interfere with link hover - but allow clicking */
/* Prevent any hover styles on child elements from conflicting */
#profile-sidebar nav a:hover *,
#profile-sidebar li a:hover *,
#profile-sidebar a:hover *,
#profile-sidebar nav a span:hover,
#profile-sidebar li a span:hover,
#profile-sidebar a span:hover,
#profile-sidebar nav a svg:hover,
#profile-sidebar li a svg:hover,
#profile-sidebar a svg:hover {
  background-color: transparent !important;
  background: transparent !important;
  /* Don't use pointer-events: none as it breaks clicking */
  /* Ensure child hover doesn't override parent hover */
  color: inherit !important;
  /* Prevent any hover effects on child elements */
  transform: none !important;
  transition: none !important;
}
#profile-sidebar a:hover * {
  color: #374151 !important;
  font-weight: 400 !important;
  font-size: inherit !important;
  line-height: inherit !important;
  transform: none !important;
  letter-spacing: normal !important;
  word-spacing: normal !important;
  background-color: transparent !important;
  background: transparent !important;
}
/* Icons - completely locked */
#profile-sidebar nav a svg,
#profile-sidebar li a svg,
#profile-sidebar nav a:hover svg,
#profile-sidebar li a:hover svg {
  /* Size - locked */
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;

  /* Layout - locked */
  display: inline-block !important;
  flex: none !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  margin-right: 12px !important;
  margin-left: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  position: static !important;
  vertical-align: middle !important;

  /* Visibility - locked */
  opacity: 1 !important;
  visibility: visible !important;

  /* Color - locked */
  color: #374151 !important;
  stroke: #374151 !important;
  fill: none !important;

  /* Behavior - locked */
  transform: none !important;
  transition: none !important;
}
/* Ensure inner SVG paths/lines remain visible */
#profile-sidebar a svg *,
#profile-sidebar a:hover svg *,
#profile-sidebar a svg path,
#profile-sidebar a:hover svg path {
  stroke: #374151 !important;
  fill: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: none !important;
}
/* Prevent parent list items from changing background on hover - let the link handle it */
#profile-sidebar li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  background-color: transparent !important;
  background: transparent !important;
}
#profile-sidebar li:hover {
  background: transparent !important;
  background-color: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
}
/* Ensure ul elements don't have backgrounds */
#profile-sidebar ul,
#profile-sidebar nav ul,
#profile-sidebar .space-y-2,
#profile-sidebar nav .space-y-2 {
  background-color: transparent !important;
  background: transparent !important;
}
/* Make links extend to full sidebar width by counteracting nav padding */
#profile-sidebar nav a,
#profile-sidebar li a,
#profile-sidebar nav a.flex.items-center.text-gray-700,
#profile-sidebar li a.flex.items-center.text-gray-700,
#profile-sidebar a.flex.items-center.text-gray-700 {
  /* Counteract nav p-6 padding to make links span full width */
  /* Tailwind p-6 = 1.5rem = 24px, but check actual computed value */
  margin-left: -24px !important;
  margin-right: -24px !important;
  /* Original link padding was 12px 16px, so left padding = 24px nav + 16px = 40px */
  padding-left: 40px !important;
  padding-right: 40px !important;
  /* Ensure full width */
  width: calc(100% + 48px) !important; /* 100% + 24px left + 24px right */
  max-width: none !important;
}
/* Same for hover state */
#profile-sidebar nav a:hover,
#profile-sidebar li a:hover,
#profile-sidebar nav a.flex.items-center.text-gray-700:hover,
#profile-sidebar li a.flex.items-center.text-gray-700:hover,
#profile-sidebar a:hover,
#profile-sidebar a.flex.items-center.text-gray-700:hover {
  margin-left: -24px !important;
  margin-right: -24px !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  /* Ensure full width on hover */
  width: calc(100% + 48px) !important; /* 100% + 24px left + 24px right */
  max-width: none !important;
}
/* Ensure no pseudo-elements have backgrounds */
#profile-sidebar nav a::before,
#profile-sidebar nav a::after,
#profile-sidebar li a::before,
#profile-sidebar li a::after,
#profile-sidebar nav a:hover::before,
#profile-sidebar nav a:hover::after,
#profile-sidebar li a:hover::before,
#profile-sidebar li a:hover::after {
  display: none !important;
  content: none !important;
  background: transparent !important;
  background-color: transparent !important;
}
/* Keep icon color aligned with text and unchanged on hover */
#profile-sidebar a svg {
  color: #374151 !important;
  stroke: #374151 !important;
  fill: none;
}
#profile-sidebar a:hover svg {
  color: #374151 !important;
  stroke: #374151 !important;
}
/* Sign out button special styling */
.profile-sidebar .text-red-600:hover {
  background-color: #fef2f2;
  border-left: 4px solid #ef4444;
}
/* Remove bullet points from sidebar navigation */
.profile-sidebar ul,
.profile-sidebar nav ul,
.profile-sidebar .space-y-2,
.profile-sidebar nav .space-y-2 {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}
.profile-sidebar li,
.profile-sidebar nav li,
.profile-sidebar .space-y-2 li {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}
/* Remove any pseudo-elements that might create bullets */
.profile-sidebar li::before,
.profile-sidebar li::after,
.profile-sidebar nav li::before,
.profile-sidebar nav li::after {
  display: none !important;
  content: none !important;
}
/* Force remove bullets with maximum specificity */
#profile-sidebar ul,
#profile-sidebar nav ul,
#profile-sidebar .space-y-2 {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}
#profile-sidebar li,
#profile-sidebar nav li,
#profile-sidebar .space-y-2 li {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}
/* Sidebar state classes */
.profile-sidebar.closed {
  display: none !important;
}
.profile-sidebar.open {
  display: block !important;
}
/* ============================================
   PROFILE SIDEBAR LINKS - FINAL CLEAN OVERRIDE
   This section overrides all previous rules
   ============================================ */
/* Base styles - everything locked */
#profile-sidebar nav a,
#profile-sidebar li a {
  display: flex !important;
  align-items: center !important;
  padding: 12px 16px !important;
  margin: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  color: #374151 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 20px !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 8px !important;
  transform: none !important;
  transition: none !important;
}
/* Hover - ONLY background changes - REMOVED DUPLICATE RULE (consolidated above) */
/* Child elements */
#profile-sidebar nav a *,
#profile-sidebar li a *,
#profile-sidebar nav a:hover *,
#profile-sidebar li a:hover * {
  color: #374151 !important;
  font-weight: 400 !important;
  transform: none !important;
  transition: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background-color: transparent !important;
  background: transparent !important;
}
/* Icons - Force inline-block to prevent layout shifts */
#profile-sidebar nav a svg,
#profile-sidebar li a svg,
#profile-sidebar nav a:hover svg,
#profile-sidebar li a:hover svg,
#profile-sidebar a svg,
#profile-sidebar a:hover svg,
#profile-sidebar nav li a svg,
#profile-sidebar nav li a:hover svg {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  display: inline-block !important;
  flex: none !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  margin-right: 12px !important;
  margin-left: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  color: #374151 !important;
  stroke: #374151 !important;
  fill: none !important;
  transform: none !important;
  transition: none !important;
  position: static !important;
  vertical-align: middle !important;
  box-sizing: border-box !important;
}
/* SVG paths */
#profile-sidebar nav a svg path,
#profile-sidebar li a svg path,
#profile-sidebar nav a:hover svg path,
#profile-sidebar li a:hover svg path {
  stroke: #374151 !important;
  fill: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}
/* ============================================
   ACCOUNT AVATARS IN SIDEBAR - FORCE CORRECT SIZE
   ============================================ */
/* Account avatars in sidebar links - ULTRA SPECIFIC to override everything */
#profile-sidebar nav a img,
#profile-sidebar li a img,
#profile-sidebar nav a:hover img,
#profile-sidebar li a:hover img,
#profile-sidebar a img,
#profile-sidebar a:hover img,
#profile-sidebar nav li a img,
#profile-sidebar nav li a:hover img,
#profile-sidebar .flex.items-center img,
#profile-sidebar .flex.items-center:hover img,
#profile-sidebar nav a img[width],
#profile-sidebar nav a img[height],
#profile-sidebar li a img[width],
#profile-sidebar li a img[height] {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  min-height: 24px !important;
  margin-right: 12px !important;
  margin-left: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  display: block !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  flex-basis: 24px !important;
  transform: none !important;
  transition: none !important;
  position: static !important;
  box-sizing: border-box !important;
  border-radius: 50% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  /* Override any inline styles, Tailwind classes, or HTML attributes */
  aspect-ratio: 1 / 1 !important;
  /* Force override HTML width/height attributes */
  max-width: 24px !important;
  max-height: 24px !important;
}
/* Avatar wrapper spans (the outer span from account_avatar helper) - prevent them from affecting layout */
#profile-sidebar nav a > span.w-6,
#profile-sidebar nav a > span.h-6,
#profile-sidebar li a > span.w-6,
#profile-sidebar li a > span.h-6,
#profile-sidebar nav a > span[style*='width'],
#profile-sidebar nav a > span[style*='height'],
#profile-sidebar li a > span[style*='width'],
#profile-sidebar li a > span[style*='height'],
#profile-sidebar nav a > span.flex,
#profile-sidebar li a > span.flex {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  min-height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  flex-shrink: 0 !important;
  margin-right: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
/* Account link text spans - prevent movement */
/* Target spans that are NOT the avatar wrapper (exclude spans with w-6, h-6, rounded-full, or flex classes) */
#profile-sidebar
  nav
  a
  span:not(.w-6):not(.h-6):not(.rounded-full):not(.flex):not(
    [style*='width']
  ):not([style*='height']),
#profile-sidebar
  li
  a
  span:not(.w-6):not(.h-6):not(.rounded-full):not(.flex):not(
    [style*='width']
  ):not([style*='height']),
#profile-sidebar
  nav
  a:hover
  span:not(.w-6):not(.h-6):not(.rounded-full):not(.flex):not(
    [style*='width']
  ):not([style*='height']),
#profile-sidebar
  li
  a:hover
  span:not(.w-6):not(.h-6):not(.rounded-full):not(.flex):not(
    [style*='width']
  ):not([style*='height']),
#profile-sidebar
  a
  span:not(.w-6):not(.h-6):not(.rounded-full):not(.flex):not(
    [style*='width']
  ):not([style*='height']),
#profile-sidebar
  a:hover
  span:not(.w-6):not(.h-6):not(.rounded-full):not(.flex):not(
    [style*='width']
  ):not([style*='height']),
#profile-sidebar
  nav
  li
  a
  span:not(.w-6):not(.h-6):not(.rounded-full):not(.flex):not(
    [style*='width']
  ):not([style*='height']),
#profile-sidebar
  nav
  li
  a:hover
  span:not(.w-6):not(.h-6):not(.rounded-full):not(.flex):not(
    [style*='width']
  ):not([style*='height']) {
  display: block !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 20px !important;
  height: 20px !important;
  min-height: 20px !important;
  max-height: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  transition: none !important;
  position: static !important;
  vertical-align: baseline !important;
  flex: 1 1 auto !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
}
/* ============================================
   PROFILE ICON - PREVENT SHRINK ON HOVER
   Comprehensive override to prevent any shrink effects
   ============================================ */
/* Target the profile button and all its contents */
#profile-sidebar-btn,
.account-menu button,
.account-menu button#profile-sidebar-btn,
button[aria-label='Profile Menu'],
button[aria-label='Profile Menu'] *,
.account-menu button * {
  transform: scale(1) !important;
  transform-origin: center center !important;
  transition: none !important;
}
/* Prevent shrink on hover - most specific selector */
#profile-sidebar-btn:hover,
.account-menu button:hover,
.account-menu button#profile-sidebar-btn:hover,
button[aria-label='Profile Menu']:hover,
button[aria-label='Profile Menu']:hover *,
.account-menu button:hover * {
  transform: scale(1) !important;
  transform-origin: center center !important;
  transition: none !important;
}
/* Ensure the avatar image itself doesn't shrink */
#profile-sidebar-btn img,
#profile-sidebar-btn span,
.account-menu button img,
.account-menu button span,
button[aria-label='Profile Menu'] img,
button[aria-label='Profile Menu'] span {
  transform: scale(1) !important;
  transform-origin: center center !important;
  transition: none !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}
/* Prevent avatar from shrinking on hover */
#profile-sidebar-btn:hover img,
#profile-sidebar-btn:hover span,
.account-menu button:hover img,
.account-menu button:hover span,
button[aria-label='Profile Menu']:hover img,
button[aria-label='Profile Menu']:hover span {
  transform: scale(1) !important;
  transform-origin: center center !important;
  transition: none !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}
/* Events dropdown styling */
.events-nav-item {
  position: relative;
  display: inline-block;
}
.events-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  z-index: 50;
  min-width: 280px;
  max-width: 320px;
  overflow: hidden;
}
.events-dropdown.hidden {
  display: none !important;
}
.events-dropdown:not(.hidden) {
  display: block !important;
}
.events-dropdown a {
  display: block !important;
  padding: 8px 16px !important;
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
  color: #374151 !important;
  transition: none !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  width: auto !important;
  height: auto !important;
  min-width: auto !important;
  max-width: none !important;
  min-height: auto !important;
  max-height: none !important;
  flex-direction: column !important; /* Ensure children stack vertically */
  align-items: flex-start !important; /* Align children to the left */
}
.events-dropdown a:hover,
.events-dropdown a:focus,
.events-dropdown a:active {
  background-color: transparent !important;
  background: transparent !important;
  color: #374151 !important; /* Prevent text color change on hover */
  padding: 8px 16px !important; /* Prevent padding changes */
  margin: 0 !important; /* Prevent margin changes */
  width: auto !important; /* Prevent width changes */
  height: auto !important; /* Prevent height changes */
  min-width: auto !important;
  max-width: none !important;
  min-height: auto !important;
  max-height: none !important;
  box-sizing: border-box !important;
  display: block !important; /* Keep block layout, not flex or inline-flex */
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
  transition: none !important;
  transform: none !important;
  flex-direction: initial !important; /* Not flex, so no flex-direction */
  align-items: initial !important; /* Not flex, so no align-items */
  flex-wrap: initial !important;
  font-weight: 600 !important; /* Make text bolder on hover */
}
/* Ensure inner divs stay as block elements */
.events-dropdown a > div {
  display: block !important;
  width: 100% !important;
}
.events-dropdown a:hover > div,
.events-dropdown a:focus > div,
.events-dropdown a:active > div {
  display: block !important;
  width: 100% !important;
}
/* Prevent any hover effects on inner content */
.events-dropdown a:hover *,
.events-dropdown a:focus *,
.events-dropdown a:active * {
  color: inherit !important;
  background-color: transparent !important;
  background: transparent !important;
  transition: none !important;
  transform: none !important;
}
/* Override any other hover rules that might affect events dropdown */
.events-dropdown a.events-dropdown-item:hover,
.events-dropdown a.events-dropdown-item:focus,
.events-dropdown a.events-dropdown-item:active {
  background-color: transparent !important;
  background: transparent !important;
  color: #374151 !important;
  padding: 8px 16px !important;
  margin: 0 !important;
  width: auto !important;
  height: auto !important;
  box-sizing: border-box !important;
  display: block !important;
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
  transition: none !important;
  transform: none !important;
  min-width: auto !important;
  max-width: none !important;
  min-height: auto !important;
  max-height: none !important;
}
@media (min-width: 1024px) {
  .events-dropdown {
    margin-top: 4px;
  }
}
/* ============================================
   FINAL OVERRIDE - PROFILE SIDEBAR LINKS
   This rule comes last to override everything
   ============================================ */
#profile-sidebar nav a,
#profile-sidebar li a,
#profile-sidebar nav a.flex.items-center.text-gray-700,
#profile-sidebar li a.flex.items-center.text-gray-700 {
  /* Force no transitions - override ALL possible sources */
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  -ms-transition: none !important;
  transition-property: none !important;
  transition-duration: 0s !important;
  transition-timing-function: none !important;
  transition-delay: 0s !important;
  animation: none !important;

  /* Force full-width with negative margins */
  margin-left: -24px !important;
  margin-right: -24px !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  /* Override width to span full sidebar including padding */
  width: calc(100% + 48px) !important; /* 100% + 24px left + 24px right */
  max-width: none !important;

  /* Ensure consistent hover area */
  position: relative !important;
  z-index: 1 !important;
  min-height: 44px !important;
  display: flex !important;
  align-items: center !important;
}
#profile-sidebar nav a:hover,
#profile-sidebar li a:hover,
#profile-sidebar nav a.flex.items-center.text-gray-700:hover,
#profile-sidebar li a.flex.items-center.text-gray-700:hover,
#profile-sidebar a.flex.items-center.text-gray-700:hover,
#profile-sidebar a:hover {
  /* Force no transitions on hover - use maximum specificity */
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  -ms-transition: none !important;
  transition-property: none !important;
  transition-duration: 0s !important;
  transition-timing-function: none !important;
  transition-delay: 0s !important;
  animation: none !important;
  -webkit-animation: none !important;
  -moz-animation: none !important;
  -o-animation: none !important;

  /* Force full-width background - set immediately without transition */
  margin-left: -24px !important;
  margin-right: -24px !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  /* Override width to span full sidebar including padding */
  width: calc(100% + 48px) !important; /* 100% + 24px left + 24px right */
  max-width: none !important;
  /* Use rgb() to prevent opacity transitions - force instant change */
  background-color: rgb(243, 244, 246) !important;
  background: rgb(243, 244, 246) !important;
  background-image: none !important;
  /* Force opacity to 1 to prevent any fade effects */
  opacity: 1 !important;
  /* Prevent GPU-accelerated transitions */
  will-change: auto !important;
  backface-visibility: visible !important;

  /* Ensure consistent hover area - match base state exactly */
  position: relative !important;
  z-index: 1 !important;
  min-height: 44px !important;
  display: flex !important;
  align-items: center !important;
}
/* CRITICAL: Prevent child elements from having separate hover states */
/* This prevents flickering when mouse moves between text and padding */
#profile-sidebar nav a span:hover,
#profile-sidebar li a span:hover,
#profile-sidebar a span:hover,
#profile-sidebar nav a svg:hover,
#profile-sidebar li a svg:hover,
#profile-sidebar a svg:hover,
#profile-sidebar nav a:hover span:hover,
#profile-sidebar li a:hover span:hover,
#profile-sidebar a:hover span:hover {
  /* No background changes - inherit from parent link */
  background-color: transparent !important;
  background: transparent !important;
  /* Inherit all styles from parent */
  color: inherit !important;
  transform: none !important;
  transition: none !important;
}
/* ============================================
   ABSOLUTE FINAL OVERRIDE - FORCE INSTANT HOVER
   This must be the last rule to override everything
   ============================================ */
#profile-sidebar nav a.flex.items-center.text-gray-700:hover,
#profile-sidebar li a.flex.items-center.text-gray-700:hover,
#profile-sidebar a.flex.items-center.text-gray-700:hover {
  /* Force instant background change - no transitions whatsoever */
  background-color: rgb(243, 244, 246) !important;
  background: rgb(243, 244, 246) !important;
  background-image: none !important;
  opacity: 1 !important;

  /* Absolutely no transitions */
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  -ms-transition: none !important;
  transition-property: none !important;
  transition-duration: 0s !important;
  transition-timing-function: none !important;
  transition-delay: 0s !important;
  animation: none !important;
  -webkit-animation: none !important;
  -moz-animation: none !important;
  -o-animation: none !important;

  /* Prevent GPU acceleration that might cause transitions */
  will-change: auto !important;
  backface-visibility: visible !important;
  transform: translateZ(0) !important;
}
/* Highlights unseen notifications with background color */
[data-notifications-target="notification"]:not([data-seen-at]){
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, 1);
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity, 1));
}
.dark [data-notifications-target="notification"]:not([data-seen-at]){
  --tw-bg-opacity: 1;
  background-color: rgba(31, 41, 55, 1);
  background-color: rgba(31, 41, 55, var(--tw-bg-opacity, 1));
}
/* Highlights unread notifications with blue dot */
[data-notifications-target="notification"]:not([data-read-at]) [unread]{
  display: block;
}
nav.pagy.nav {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
}
nav.pagy.nav a:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
  }
nav.pagy.nav a:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
  }
nav.pagy.nav a:not(.gap) {
    background: #eee2ce;
    background: var(--base-bg-lowest);
    border: 1px solid #eee2ce;
    border: 1px solid var(--base-border-tertiary);
    color: #ec1c24;
    color: var(--text-primary);
    padding: 8px 12px;
    position: relative;
    display: block;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
    margin-left: -1px;
  }
nav.pagy.nav a:not(.gap):hover {
      background: #eee2ce;
      background: var(--base-bg-hover);
      color: #f16222;
      color: var(--text-primary-hover);
    }
nav.pagy.nav a.current[aria-current="page"]:not(.gap) {
      background: #ec1c24;
      background: var(--bg-primary);
      color: #fff;
      color: var(--text-on-primary);
      margin-left: -1px;
    }
nav.pagy.nav a:not(.gap):not([href]) {
      background: #eee2ce;
      background: var(--base-bg-lowest);
      color: #6b7280;
      color: var(--base-text-tertiary);
      margin-left: -1px;
    }
/* bridge--form component */
[data-bridge-components~="form"]
[data-controller~="bridge--form"]
[type="submit"] {
  display: none;
}
.tab-active {
  background: linear-gradient(116deg, #3957F4 22%, #2F87EE 90%);
  border-radius: 4px 4px 0px 0px;
}
.tab-active a{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.tab-active a:hover,.tab-active a:focus {
      background: linear-gradient(308deg, #3957F4 24%, #2F87EE 80%);
      border-radius: 4px 4px 0px 0px;
    }
.tab-active a:hover,.tab-active a:focus{
  --tw-text-opacity: 1;
  color: rgba(209, 213, 219, 1);
  color: rgba(209, 213, 219, var(--tw-text-opacity, 1));
}
.tippy-box[data-theme~="default"] {
  background-color: #050707;
  background-color: var(--base-bg-tooltip);
  opacity: 0.95;
  color: #fff;
  color: var(--base-text-on-tooltip);
  border-radius: 4px;
  padding: 8px;
  box-shadow: 0px 4px 6px -1px rgba(16, 24, 40, 0.10), 0px 2px 4px -2px rgba(16, 24, 40, 0.10);
}
.tippy-box[data-theme~='default'][data-placement^='top'] > .tippy-arrow::before {
  border-top-color: #050707;
  border-top-color: var(--base-bg-tooltip);
}
.tippy-box[data-theme~='default'][data-placement^='bottom'] > .tippy-arrow::before {
  border-bottom-color: #050707;
  border-bottom-color: var(--base-bg-tooltip);
}
.tippy-box[data-theme~='default'][data-placement^='left'] > .tippy-arrow::before {
  border-left-color: #050707;
  border-left-color: var(--base-bg-tooltip);
}
.tippy-box[data-theme~='default'][data-placement^='right'] > .tippy-arrow::before {
  border-right-color: #050707;
  border-right-color: var(--base-bg-tooltip);
}
.top-nav {
  background: #ffffff;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  position: relative;
  padding: 8px 16px;
  margin-bottom: 16px;
  border: none !important;
  border-bottom: none !important;
}
.top-nav .menu-section-heading {
  border: 2px solid white !important;
  padding: 6px 12px !important;
  transition: none !important;
  display: inline-block !important;
  color: #ec1f25 !important;
  font-family: 'Lulo Clean', sans-serif !important;
  font-weight: bold !important;
  background-color: white !important;
}
@media (min-width: 1024px) {
  .top-nav {
    padding: 0px 32px;
  }

  .top-nav .logo {
    left: 32px;
  }

  .nav-user-controls {
    right: 32px;
  }
}
.top-nav .logo {
  display: flex;
  align-items: center;
  position: absolute;
  left: 16px;
}
@media (min-width: 1024px) {
  .top-nav .logo {
    padding: 16px 0px;
  }
}
.top-nav .logo a {
  color: #050707;
  color: var(--base-text);
  display: flex;
  align-items: center;
  cursor: pointer;
}
.top-nav .logo a:hover,
.top-nav .logo a:hover *,
.top-nav .logo a:focus,
.top-nav .logo a:focus *,
.top-nav .logo img:hover,
.top-nav .logo img:focus,
header .top-nav .logo a:hover,
header .top-nav .logo a:focus,
nav.top-nav .logo a:hover,
nav.top-nav .logo a:focus {
  transform: none !important;
  transition: none !important;
  animation: none !important;
  filter: none !important;
  color: currentColor !important;
  background-color: transparent !important;
  background: transparent !important;
  cursor: pointer !important;
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.nav-container {
  background: #ffffff;
  padding: 16px 0px;
  position: static !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex: 1 !important;
  width: 100%;
  top: auto !important;
  left: auto !important;
  right: auto !important;
}
/* Navigation heading styles */
.nav-container h1,
.nav-container h2,
.nav-container h4,
.nav-container h5,
.nav-container h6,
.nav-container .h1,
.nav-container .h2,
.nav-container .h4,
.nav-container .h5,
.nav-container .h6 {
  padding: 6px 12px;
  transition: none;
  display: inline-block;
  color: white;
  font-family: 'Lulo Clean', sans-serif;
  font-weight: bold;
}
/* Override menu-section-heading styles for white borders */
.nav-container .menu-section-heading {
  border: 4px solid white !important;
  padding: 6px 12px !important;
  transition: none !important;
  display: inline-block !important;
  color: white !important;
  font-family: 'Lulo Clean', sans-serif !important;
  font-weight: bold !important;
}
@media (min-width: 1024px) {
  .nav-container {
    box-shadow: none;
    padding: 0px;
    position: static;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0;
    flex: 1;
  }
}
.nav-container nav {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0;
}
/* Navigation link styles */
.nav-container nav .nav-link,
.top-nav .nav-link {
  border: none !important; /* No border for inactive state */
  padding: 4px 8px !important;
  transition: none !important; /* No animations */
  display: inline-block !important;
  color: #000000 !important; /* Black text for inactive state */
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
  margin: 0 4px !important;
  font-weight: bold !important;
  background-color: transparent !important; /* No background for inactive state */
}
/* Ensure events nav item wrapper doesn't affect alignment */
.events-nav-item {
  display: inline-block !important;
  vertical-align: top !important;
  margin: 0 !important;
  padding: 0 !important;
}
.events-nav-item .nav-link {
  margin: 0 !important; /* Will be set properly in media query */
}
/* No hover state - COMPLETELY DISABLED */
/* Note: Hover effects are handled by the more specific rules below */
.nav-container nav .nav-link.active,
.top-nav .nav-link.active {
  border: none !important; /* No border for active state */
  background-color: #f16222 !important; /* Orange background for active state */
  color: white !important; /* White text for active state */
  padding: 5px 8px !important; /* Slightly increased vertical padding */
  height: auto !important; /* Let height be determined by content */
  line-height: normal !important;
}
@media (min-width: 1024px) {
  .nav-container nav {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }

  /* Ensure events nav item aligns properly on desktop */
  .events-nav-item {
    display: inline-flex !important;
    align-items: center !important;
    vertical-align: top !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 40px !important; /* Match nav-link line-height */
  }

  .events-nav-item .nav-link {
    display: inline-flex !important;
    margin: 0px 16px 0px 0px !important;
    line-height: 40px !important;
    align-items: center !important;
  }
}
.nav-container nav .btn-container {
  width: 100%;
  padding: 0px 16px;
}
@media (min-width: 1024px) {
  .nav-container nav .btn-container {
    padding: 0px;
  }
}
section nav a {
  color: #050707;
  color: var(--base-text);
  font-size: 16px;
  padding: 12px 16px;
  width: 100%;
  text-wrap: nowrap;
}
@media (min-width: 1024px) {
section nav a {
    color: #050707;
    color: var(--base-text);
    padding: 16px 8px;
}
  }
/* Exclude events dropdown links from nav hover rules */
section nav a:hover:not(.events-dropdown-item):not(.events-dropdown a) {
    color: #374151;
    color: var(--base-text-secondary);
  }
section nav a.active {
    background: #eee2ce;
    background: var(--base-bg-hover);
    border-left: 4px solid #f16222;
    border-left: 4px solid var(--border-primary);
    color: #ec1c24;
    color: var(--text-primary);
    font-weight: 600;
    padding: 12px;
  }
@media (min-width: 1024px) {
section nav a.active {
      background: transparent;
      border-bottom: 4px solid #f16222;
      border-bottom: 4px solid var(--border-primary);
      border-left: none;
      padding: 16px 8px;
  }
    }
/* Override section nav a styles for nav-link elements */
section nav a.nav-link {
  border: 2px solid white !important;
  padding: 4px 8px !important;
  transition: none !important; /* No animations */
  display: inline-block !important;
  color: white !important;
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
  margin: 0 4px !important;
  font-weight: bold !important;
  width: auto !important;
  text-wrap: normal !important;

  /* No hover effect - prevents jitter */
}
section nav a.nav-link.active {
    background-color: #f16222 !important;
    color: white !important;
    border-color: #f16222 !important;
    padding: 4px 8px !important;
  }
.top-nav__sub-nav {
  width: 100%;
}
.top-nav__sub-nav  > button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
  }
@media (min-width: 1024px) {
.top-nav__sub-nav  > button {
      color: #374151;
      color: var(--base-text-secondary);
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      padding: 8px;
  }

      .top-nav__sub-nav > button:hover {
        background: #eee2ce;
        background: var(--base-bg-hover);
      }
    }
@media (min-width: 1024px) {
.top-nav__sub-nav > button:focus {
        background: #eee2ce;
        background: var(--base-bg-hover);
        outline: 2px solid transparent;
        outline-offset: 2px;
    }
      }
.top-nav__sub-nav > button:focus  > svg {
        transform: rotate(180deg);
      }
.top-nav__sub-nav > button  > svg {
      height: 20px;
      width: 20px;
      margin-left: 4px;
    }
@media (min-width: 1024px) {
.top-nav__sub-nav-dropdown {
    box-shadow: 0px 4px 6px -1px rgba(16, 24, 40, 0.1),
      0px 2px 4px -2px rgba(16, 24, 40, 0.1);
    margin-top: 12px;
    position: absolute;
    top: 100%;
    right: 0;
    transform-origin: top right;
    width: 100%;
    z-index: 50;
}
  }
.top-nav__sub-nav-dropdown .top-nav__sub-nav-dropdown-card {
    background: #fff;
    background: var(--base-bg-low);
  }
@media (min-width: 1024px) {
.top-nav__sub-nav-dropdown .top-nav__sub-nav-dropdown-card {
      display: flex;
  }
    }
.top-nav__sub-nav-dropdown .top-nav__sub-nav-dropdown-card section {
      width: 100%;
      padding: 8px 16px 8px 24px;
    }
@media (min-width: 1024px) {
.top-nav__sub-nav-dropdown .top-nav__sub-nav-dropdown-card section {
        width: 50%;
    }

        .top-nav__sub-nav-dropdown .top-nav__sub-nav-dropdown-card section:first-of-type {
          padding: 32px 32px 32px 48px;
        }

        .top-nav__sub-nav-dropdown .top-nav__sub-nav-dropdown-card section:last-of-type {
          padding: 32px 48px 32px 32px;
        }

        .top-nav__sub-nav-dropdown .top-nav__sub-nav-dropdown-card section  > * + * {
          margin-top: 4px;
        }
      }
.top-nav__sub-nav-dropdown .top-nav__sub-nav-dropdown-card section  > h6 {
        text-transform: capitalize;
        color: #374151;
        color: var(--base-text-secondary);
        font-size: 14px;
        font-weight: 600;
        line-height: 20px;
        margin-bottom: 4px;
      }
@media (min-width: 1024px) {
.top-nav__sub-nav-dropdown .top-nav__sub-nav-dropdown-card section  > h6 {
          margin-bottom: 16px;
      }
        }
.top-nav__sub-nav-dropdown .top-nav__sub-nav-dropdown-card section  > h6:not(:first-child) {
        margin-top: 16px;
      }
.top-nav__sub-nav-dropdown .top-nav__sub-nav-dropdown-card section a {
        display: flex;
        align-items: center;
        padding: 12px 12px 12px 0px;
      }
@media (min-width: 1024px) {
.top-nav__sub-nav-dropdown .top-nav__sub-nav-dropdown-card section a {
          align-items: start;
          padding: 12px;
      }

          .top-nav__sub-nav-dropdown .top-nav__sub-nav-dropdown-card section a:hover {
            background: #eee2ce;
            background: var(--base-bg-highest);
          }
        }
.top-nav__sub-nav-dropdown .top-nav__sub-nav-dropdown-card section a img,.top-nav__sub-nav-dropdown .top-nav__sub-nav-dropdown-card section a svg {
          border-radius: 4px;
          color: #2883c4;
          color: var(--base-icon);
          height: 32px;
          width: 32px;
          flex-shrink: 0;
        }
@media (min-width: 1024px) {
.top-nav__sub-nav-dropdown .top-nav__sub-nav-dropdown-card section a img,.top-nav__sub-nav-dropdown .top-nav__sub-nav-dropdown-card section a svg {
            padding: 6px;
        }
          }
.top-nav__sub-nav-dropdown .top-nav__sub-nav-dropdown-card section a  > div {
          margin-left: 16px;
        }
.top-nav__sub-nav-dropdown .top-nav__sub-nav-dropdown-card section a > div h6 {
            color: #050707;
            color: var(--base-text);
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
          }
@media (min-width: 1024px) {
.top-nav__sub-nav-dropdown .top-nav__sub-nav-dropdown-card section a > div h6 {
              font-weight: 600;
          }
            }
.top-nav__sub-nav-dropdown .top-nav__sub-nav-dropdown-card section a > div p {
            display: none;
          }
@media (min-width: 1024px) {
.top-nav__sub-nav-dropdown .top-nav__sub-nav-dropdown-card section a > div p {
              display: block;
              color: #374151;
              color: var(--base-text-secondary);
              font-size: 14px;
              font-weight: 400;
              line-height: 20px;
              text-wrap: wrap;
          }
            }
.dev-nav,
.account-menu {
  display: flex;
  align-items: center;
  position: relative;
}
@media (min-width: 1024px) {
.dev-nav,
.account-menu {
    border-radius: 4px;
    padding: 8px;
}

    .dev-nav:hover,.account-menu:hover {
      background: transparent;
      transform: none !important;
      position: relative !important;
      top: 0 !important;
      left: 0 !important;
    }

    .dev-nav:focus,.account-menu:focus {
      background: #eee2ce;
      background: var(--base-bg-hover);
      outline: 2px solid transparent;
      outline-offset: 2px;
    }

      .dev-nav:focus svg,.account-menu:focus svg {
        transform: rotate(180deg);
      }
  }
.dev-nav .menu-component,.account-menu .menu-component {
    position: absolute;
    top: 16px;
    right: 20px;
  }
@media (min-width: 1024px) {
.dev-nav .menu-component,.account-menu .menu-component {
      right: 0px;
  }
    }
.dev-nav button[aria-label='Dev Nav'] span span,.account-menu button[aria-label='Dev Nav'] span span {
      display: block;
    }
.dev-nav button[aria-label='Dev Nav'] span svg,.account-menu button[aria-label='Dev Nav'] span svg {
      color: #2883c4;
      color: var(--base-icon);
      display: block;
      height: 24px;
    }
.dev-nav button[aria-label='Profile Menu'] > span,.account-menu button[aria-label='Profile Menu'] > span {
    color: #050707;
    color: var(--base-text);
    display: flex;
    align-items: center;
    gap: 8px;
  }
.dev-nav button[aria-label='Profile Menu'] > span img,.account-menu button[aria-label='Profile Menu'] > span img {
      border-radius: 50%;
      width: 24px;
      max-width: none;
      height: 24px;
      border: 1px solid #eee2ce;
      border: 1px solid var(--base-border-tertiary);
    }
.dev-nav button[aria-label='Profile Menu'] > span  > span:last-of-type {
      display: none;
    }
.account-menu button[aria-label='Profile Menu'] > span  > span:last-of-type {
      display: none;
    }
@media (min-width: 1024px) {
.dev-nav button[aria-label='Profile Menu'] > span  > span:last-of-type {
        display: block;
    }
.account-menu button[aria-label='Profile Menu'] > span  > span:last-of-type {
        display: block;
    }
      }
.dev-nav button[aria-label='Profile Menu'] > span svg,.account-menu button[aria-label='Profile Menu'] > span svg {
      color: #2883c4;
      color: var(--base-icon);
      display: none;
      height: 20px;
    }
@media (min-width: 1024px) {
.dev-nav button[aria-label='Profile Menu'] > span svg,.account-menu button[aria-label='Profile Menu'] > span svg {
        display: block;
    }
      }
.dev-nav {
  display: none;
}
@media (min-width: 640px) {
.dev-nav {
    display: flex;
}
  }
button[aria-label='Notifications'] svg {
  color: #2883c4;
  color: var(--base-icon);
}
.nav-user-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  right: 16px;
}
@media (min-width: 1024px) {
.nav-user-controls {
    gap: 8px;
}
  }
.nav-user-controls button {
    color: #2883c4;
    color: var(--base-icon);
  }
@media (min-width: 1024px) {
  #sidebar-open {
    display: none;
  }
}
/* Specific styling for minimal layout header */
body header {
  margin-top: 24px !important;
}
@media (min-width: 1024px) {
body header {
    margin-top: 24px !important;
}
  }
/* GLOBAL OVERRIDE: Force no transitions on all navigation links */
.top-nav a,
.top-nav a *,
.nav-container a,
.nav-container a *,
header a.nav-link,
header a.nav-link *,
a.nav-link,
a.nav-link *,
.nav-link,
.nav-link * {
  transition: none !important;
  animation: none !important;
  transform: translateZ(
    0
  ) !important; /* Force GPU rendering to prevent jitter */
  -webkit-font-smoothing: antialiased !important; /* Prevent font rendering changes */
  -moz-osx-font-smoothing: grayscale !important;
  backface-visibility: hidden !important; /* Prevent rendering glitches */
  will-change: auto !important; /* Prevent browser optimization issues */
}
/* Hover state - Gray text only, no background, no layout shift */
/* Exclude events dropdown links from nav hover rules */
/* Exclude active nav links from hover effects */
.top-nav
  a:not(.events-dropdown-item):not(.events-dropdown a):not(.active):hover,
.top-nav
  a:not(.events-dropdown-item):not(.events-dropdown a):not(.active):hover
  *,
.nav-container
  a:not(.events-dropdown-item):not(.events-dropdown a):not(.active):hover,
.nav-container
  a:not(.events-dropdown-item):not(.events-dropdown a):not(.active):hover
  *,
header a.nav-link:not(.active):hover,
header a.nav-link:not(.active):hover *,
a.nav-link:not(.active):hover,
a.nav-link:not(.active):hover *,
.nav-link:not(.active):hover,
.nav-link:not(.active):hover *,
nav a.nav-link:not(.active):hover,
nav a.nav-link:not(.active):hover * {
  /* ONLY change text color on hover - gray text */
  color: #374151 !important; /* Gray-700 text on hover */
  background-color: transparent !important; /* NO background */
  background: transparent !important;
  /* Lock ALL other properties to prevent layout shift */
  font-weight: bold !important; /* Lock weight */
  padding: 5px 8px !important; /* Match active state padding - slightly increased vertical padding */
  margin: 0 !important; /* Lock margin EXACTLY */
  border: 0 !important; /* NO border (even transparent borders take space) */
  border-radius: 0 !important;
  box-sizing: border-box !important;
  display: inline-flex !important; /* Match active state display */
  /* Lock dimensions - match active state */
  min-width: -moz-max-content !important;
  min-width: max-content !important;
  max-width: -moz-max-content !important;
  max-width: max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
  white-space: nowrap !important;
  height: auto !important; /* Let height be determined by content */
  line-height: normal !important;
  align-items: center !important;
  /* CRITICAL: Prevent flex properties from changing */
  flex: none !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  /* Disable all animations */
  transform: translate3d(0, 0, 0) !important;
  transition: none !important;
  animation: none !important;
  /* Lock text properties */
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
  letter-spacing: normal !important;
  word-spacing: normal !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-rendering: geometricPrecision !important;
  backface-visibility: hidden !important;
  contain: layout paint style !important;
}
/* Prevent hover effects on active nav links */
.top-nav a.nav-link.active:hover,
.top-nav a.nav-link.active:hover *,
.nav-container a.nav-link.active:hover,
.nav-container a.nav-link.active:hover *,
header a.nav-link.active:hover,
header a.nav-link.active:hover *,
a.nav-link.active:hover,
a.nav-link.active:hover *,
.nav-link.active:hover,
.nav-link.active:hover *,
nav a.nav-link.active:hover,
nav a.nav-link.active:hover * {
  /* Keep active state styles - no hover changes */
  background-color: #f16222 !important; /* Orange background */
  color: white !important; /* White text */
  padding: 5px 8px !important;
  border: none !important;
}
trix-editor {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 3px;
  margin: 0;
  padding: 0.4em 0.6em;
  min-height: 5em;
  outline: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
trix-toolbar {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding: 0;
}
trix-toolbar * {
  box-sizing: border-box;
}
trix-toolbar .trix-button-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  overflow-x: auto;
}
trix-toolbar .trix-button-group {
  display: flex;
}
@media (max-device-width: 768px) {
  trix-toolbar .trix-button-group:not(:first-child) {
    margin-left: 0;
  }
}
trix-toolbar .trix-button-group-spacer {
  flex-grow: 1;
}
@media (max-device-width: 768px) {
  trix-toolbar .trix-button-group-spacer {
    display: none;
  }
}
trix-toolbar .trix-button {
  position: relative;
  float: left;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.75em;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 0.5em;
  margin: 0;
  outline: none;
  border: none;
  border-radius: 0;
  background: transparent;
}
trix-toolbar .trix-button.trix-active {
  background: #cbeefa;
  color: black;
}
trix-toolbar .trix-button:not(:disabled) {
  cursor: pointer;
}
trix-toolbar .trix-button:disabled {
  color: rgba(0, 0, 0, 0.125);
}
@media (max-device-width: 768px) {
  trix-toolbar .trix-button {
    letter-spacing: -0.01em;
    padding: 0 0.3em;
  }
}
trix-toolbar .trix-button--icon {
  font-size: inherit;
  width: 2.2em;
  height: 2em;
  max-width: calc(0.8em + 4vw);
  text-indent: -9999px;
}
@media (max-device-width: 768px) {
  trix-toolbar .trix-button--icon {
    height: 2em;
    max-width: calc(0.8em + 3.5vw);
  }
}
trix-toolbar .trix-button--icon::before {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.6;
  content: '';
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-device-width: 768px) {
  trix-toolbar .trix-button--icon::before {
    right: 6%;
    left: 6%;
  }
}
trix-toolbar .trix-button--icon.trix-active::before {
  opacity: 1;
}
trix-toolbar .trix-button--icon:disabled::before {
  opacity: 0.125;
}
trix-toolbar .trix-button--icon-attach::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M16.5%206v11.5a4%204%200%201%201-8%200V5a2.5%202.5%200%200%201%205%200v10.5a1%201%200%201%201-2%200V6H10v9.5a2.5%202.5%200%200%200%205%200V5a4%204%200%201%200-8%200v12.5a5.5%205.5%200%200%200%2011%200V6h-1.5z%22%2F%3E%3C%2Fsvg%3E);
  top: 8%;
  bottom: 4%;
}
trix-toolbar .trix-button--icon-bold::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M15.6%2011.8c1-.7%201.6-1.8%201.6-2.8a4%204%200%200%200-4-4H7v14h7c2.1%200%203.7-1.7%203.7-3.8%200-1.5-.8-2.8-2.1-3.4zM10%207.5h3a1.5%201.5%200%201%201%200%203h-3v-3zm3.5%209H10v-3h3.5a1.5%201.5%200%201%201%200%203z%22%2F%3E%3C%2Fsvg%3E);
}
trix-toolbar .trix-button--icon-italic::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M10%205v3h2.2l-3.4%208H6v3h8v-3h-2.2l3.4-8H18V5h-8z%22%2F%3E%3C%2Fsvg%3E);
}
trix-toolbar .trix-button--icon-link::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M9.88%2013.7a4.3%204.3%200%200%201%200-6.07l3.37-3.37a4.26%204.26%200%200%201%206.07%200%204.3%204.3%200%200%201%200%206.06l-1.96%201.72a.91.91%200%201%201-1.3-1.3l1.97-1.71a2.46%202.46%200%200%200-3.48-3.48l-3.38%203.37a2.46%202.46%200%200%200%200%203.48.91.91%200%201%201-1.3%201.3z%22%2F%3E%3Cpath%20d%3D%22M4.25%2019.46a4.3%204.3%200%200%201%200-6.07l1.93-1.9a.91.91%200%201%201%201.3%201.3l-1.93%201.9a2.46%202.46%200%200%200%203.48%203.48l3.37-3.38c.96-.96.96-2.52%200-3.48a.91.91%200%201%201%201.3-1.3%204.3%204.3%200%200%201%200%206.07l-3.38%203.38a4.26%204.26%200%200%201-6.07%200z%22%2F%3E%3C%2Fsvg%3E);
}
trix-toolbar .trix-button--icon-strike::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M12.73%2014l.28.14c.26.15.45.3.57.44.12.14.18.3.18.5%200%20.3-.15.56-.44.75-.3.2-.76.3-1.39.3A13.52%2013.52%200%200%201%207%2014.95v3.37a10.64%2010.64%200%200%200%204.84.88c1.26%200%202.35-.19%203.28-.56.93-.37%201.64-.9%202.14-1.57s.74-1.45.74-2.32c0-.26-.02-.51-.06-.75h-5.21zm-5.5-4c-.08-.34-.12-.7-.12-1.1%200-1.29.52-2.3%201.58-3.02%201.05-.72%202.5-1.08%204.34-1.08%201.62%200%203.28.34%204.97%201l-1.3%202.93c-1.47-.6-2.73-.9-3.8-.9-.55%200-.96.08-1.2.26-.26.17-.38.38-.38.64%200%20.27.16.52.48.74.17.12.53.3%201.05.53H7.23zM3%2013h18v-2H3v2z%22%2F%3E%3C%2Fsvg%3E);
}
trix-toolbar .trix-button--icon-quote::before {
  background-image: url(data:image/svg+xml,%3Csvg%20version%3D%221%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M6%2017h3l2-4V7H5v6h3zm8%200h3l2-4V7h-6v6h3z%22%2F%3E%3C%2Fsvg%3E);
}
trix-toolbar .trix-button--icon-heading-1::before {
  background-image: url(data:image/svg+xml,%3Csvg%20version%3D%221%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M12%209v3H9v7H6v-7H3V9h9zM8%204h14v3h-6v12h-3V7H8V4z%22%2F%3E%3C%2Fsvg%3E);
}
trix-toolbar .trix-button--icon-code::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M18.2%2012L15%2015.2l1.4%201.4L21%2012l-4.6-4.6L15%208.8l3.2%203.2zM5.8%2012L9%208.8%207.6%207.4%203%2012l4.6%204.6L9%2015.2%205.8%2012z%22%2F%3E%3C%2Fsvg%3E);
}
trix-toolbar .trix-button--icon-bullet-list::before {
  background-image: url(data:image/svg+xml,%3Csvg%20version%3D%221%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%204a2%202%200%201%200%200%204%202%202%200%200%200%200-4zm0%206a2%202%200%201%200%200%204%202%202%200%200%200%200-4zm0%206a2%202%200%201%200%200%204%202%202%200%200%200%200-4zm4%203h14v-2H8v2zm0-6h14v-2H8v2zm0-8v2h14V5H8z%22%2F%3E%3C%2Fsvg%3E);
}
trix-toolbar .trix-button--icon-number-list::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M2%2017h2v.5H3v1h1v.5H2v1h3v-4H2v1zm1-9h1V4H2v1h1v3zm-1%203h1.8L2%2013.1v.9h3v-1H3.2L5%2010.9V10H2v1zm5-6v2h14V5H7zm0%2014h14v-2H7v2zm0-6h14v-2H7v2z%22%2F%3E%3C%2Fsvg%3E);
}
trix-toolbar .trix-button--icon-undo::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M12.5%208c-2.6%200-5%201-6.9%202.6L2%207v9h9l-3.6-3.6A8%208%200%200%201%2020%2016l2.4-.8a10.5%2010.5%200%200%200-10-7.2z%22%2F%3E%3C%2Fsvg%3E);
}
trix-toolbar .trix-button--icon-redo::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M18.4%2010.6a10.5%2010.5%200%200%200-16.9%204.6L4%2016a8%208%200%200%201%2012.7-3.6L13%2016h9V7l-3.6%203.6z%22%2F%3E%3C%2Fsvg%3E);
}
trix-toolbar .trix-button--icon-decrease-nesting-level::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M3%2019h19v-2H3v2zm7-6h12v-2H10v2zm-8.3-.3l2.8%202.9L6%2014.2%204%2012l2-2-1.4-1.5L1%2012l.7.7zM3%205v2h19V5H3z%22%2F%3E%3C%2Fsvg%3E);
}
trix-toolbar .trix-button--icon-increase-nesting-level::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M3%2019h19v-2H3v2zm7-6h12v-2H10v2zm-6.9-1L1%2014.2l1.4%201.4L6%2012l-.7-.7-2.8-2.8L1%209.9%203.1%2012zM3%205v2h19V5H3z%22%2F%3E%3C%2Fsvg%3E);
}
trix-toolbar .trix-dialogs {
  position: relative;
}
trix-toolbar .trix-dialog {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: 0.75em;
  padding: 15px 10px;
  background: #fff;
  box-shadow: 0 0.3em 1em #ccc;
  border-top: 2px solid #888;
  border-radius: 5px;
  z-index: 5;
}
trix-toolbar .trix-input--dialog {
  font-size: inherit;
  font-weight: normal;
  padding: 0.5em 0.8em;
  margin: 0 10px 0 0;
  border-radius: 3px;
  border: 1px solid #bbb;
  background-color: #fff;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
trix-toolbar .trix-input--dialog.validate:invalid {
  box-shadow: #f00 0px 0px 1.5px 1px;
}
trix-toolbar .trix-button--dialog {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  background-color: #3b82f6;
  border: 1px solid #3b82f6;
  border-radius: 0.375rem;
  -webkit-text-decoration: none;
  text-decoration: none;
  cursor: pointer;
  font-size: inherit;
}
trix-toolbar .trix-dialog--link {
  max-width: 600px;
}
trix-toolbar .trix-dialog__link-fields {
  display: flex;
  align-items: baseline;
}
trix-toolbar .trix-dialog__link-fields .trix-input {
  flex: 1;
  width: 100%;
}
trix-toolbar .trix-dialog__link-fields .trix-button-group {
  flex: 0 0 content;
  margin: 0;
}
trix-toolbar .trix-dialog__link-fields .trix-button-group .trix-button--dialog:last-of-type {
    margin-left: 0.25rem;
  }
@media (max-device-width: 768px) {
  trix-toolbar .trix-dialog__link-fields {
    display: block;
  }

    trix-toolbar .trix-dialog__link-fields .trix-button-group {
      margin-top: 0.5rem;
    }
}
trix-editor [data-trix-mutable]:not(.attachment__caption-editor) {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
trix-editor [data-trix-mutable]::-moz-selection,
trix-editor [data-trix-cursor-target]::-moz-selection,
trix-editor [data-trix-mutable] ::-moz-selection {
  background: none;
}
trix-editor [data-trix-mutable]::-moz-selection, trix-editor [data-trix-cursor-target]::-moz-selection, trix-editor [data-trix-mutable] ::-moz-selection {
  background: none;
}
trix-editor [data-trix-mutable]::selection,
trix-editor [data-trix-cursor-target]::selection,
trix-editor [data-trix-mutable] ::selection {
  background: none;
}
trix-editor
  [data-trix-mutable].attachment__caption-editor:focus::-moz-selection {
  background: highlight;
}
trix-editor [data-trix-mutable].attachment__caption-editor:focus::-moz-selection {
  background: highlight;
}
trix-editor [data-trix-mutable].attachment__caption-editor:focus::selection {
  background: highlight;
}
trix-editor [data-trix-mutable].attachment.attachment--file {
  box-shadow: 0 0 0 2px highlight;
  border-color: transparent;
}
trix-editor [data-trix-mutable].attachment img {
  box-shadow: 0 0 0 2px highlight;
}
trix-editor .attachment {
  position: relative;
}
trix-editor .attachment:hover {
  cursor: default;
}
trix-editor .attachment--preview .attachment__caption:hover {
  cursor: text;
}
trix-editor .attachment__progress {
  position: absolute;
  z-index: 1;
  height: 20px;
  top: calc(50% - 10px);
  left: 5%;
  width: 90%;
  opacity: 0.9;
  transition: opacity 200ms ease-in;
}
trix-editor .attachment__progress[value='100'] {
  opacity: 0;
}
trix-editor .attachment__caption-editor {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  color: inherit;
  text-align: center;
  vertical-align: top;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
trix-editor .attachment__toolbar {
  position: absolute;
  z-index: 1;
  top: -0.9em;
  left: 0;
  width: 100%;
  text-align: center;
}
trix-editor .trix-button-group {
  display: inline-flex;
}
trix-editor .trix-button {
  position: relative;
  float: left;
  color: #666;
  white-space: nowrap;
  font-size: 80%;
  padding: 0 0.8em;
  margin: 0;
  outline: none;
  border: none;
  border-radius: 0;
  background: transparent;
}
trix-editor .trix-button:not(:first-child) {
  border-left: 1px solid #ccc;
}
trix-editor .trix-button.trix-active {
  background: #cbeefa;
}
trix-editor .trix-button:not(:disabled) {
  cursor: pointer;
}
trix-editor .trix-button--remove {
  text-indent: -9999px;
  display: inline-block;
  padding: 0;
  outline: none;
  width: 1.8em;
  height: 1.8em;
  line-height: 1.8em;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid highlight;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25);
}
trix-editor .trix-button--remove::before {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.7;
  content: '';
  background-image: url(data:image/svg+xml,%3Csvg%20height%3D%2224%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M19%206.4L17.6%205%2012%2010.6%206.4%205%205%206.4l5.6%205.6L5%2017.6%206.4%2019l5.6-5.6%205.6%205.6%201.4-1.4-5.6-5.6z%22%2F%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22%2F%3E%3C%2Fsvg%3E);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90%;
}
trix-editor .trix-button--remove:hover {
  border-color: #333;
}
trix-editor .trix-button--remove:hover::before {
  opacity: 1;
}
trix-editor .attachment__metadata-container {
  position: relative;
}
trix-editor .attachment__metadata {
  position: absolute;
  left: 50%;
  top: 2em;
  transform: translate(-50%, 0);
  max-width: 90%;
  padding: 0.1em 0.6em;
  font-size: 0.8em;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
}
trix-editor .attachment__metadata .attachment__name {
  display: inline-block;
  max-width: 100%;
  vertical-align: bottom;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
trix-editor .attachment__metadata .attachment__size {
  margin-left: 0.2em;
  white-space: nowrap;
}
.trix-content {
  line-height: 1.5;
}
.trix-content * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.trix-content h1 {
  font-size: 1.2em;
  line-height: 1.2;
}
.trix-content blockquote {
  border: 0 solid #ccc;
  border-left-width: 0.3em;
  margin-left: 0.3em;
  padding-left: 0.6em;
}
.trix-content [dir='rtl'] blockquote,
.trix-content blockquote[dir='rtl'] {
  border-width: 0;
  border-right-width: 0.3em;
  margin-right: 0.3em;
  padding-right: 0.6em;
}
.trix-content li {
  margin-left: 1em;
}
.trix-content [dir='rtl'] li {
  margin-right: 1em;
}
.trix-content pre {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  font-family: monospace;
  font-size: 0.9em;
  padding: 0.5em;
  white-space: pre;
  background-color: #eee;
  overflow-x: auto;
}
.trix-content img {
  max-width: 100%;
  height: auto;
}
.trix-content .attachment {
  display: inline-block;
  position: relative;
  max-width: 100%;
}
.trix-content .attachment a {
  color: inherit;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.trix-content .attachment a:hover,
.trix-content .attachment a:visited:hover {
  color: inherit;
}
.trix-content .attachment__caption {
  text-align: center;
}
.trix-content
  .attachment__caption
  .attachment__name
  + .attachment__size::before {
  content: ' · ';
}
.trix-content .attachment--preview {
  width: 100%;
  text-align: center;
}
.trix-content .attachment--preview .attachment__caption {
  color: #666;
  font-size: 0.9em;
  line-height: 1.2;
}
.trix-content .attachment--file {
  color: #333;
  line-height: 1;
  margin: 0 2px 2px 2px;
  padding: 0.4em 1em;
  border: 1px solid #bbb;
  border-radius: 5px;
}
.trix-content .attachment-gallery {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.trix-content .attachment-gallery .attachment {
  flex: 1 0 33%;
  padding: 0 0.5em;
  max-width: 33%;
}
.trix-content .attachment-gallery.attachment-gallery--2 .attachment,
.trix-content .attachment-gallery.attachment-gallery--4 .attachment {
  flex-basis: 50%;
  max-width: 50%;
}
/* JSP customizations */
html.dark .trix-content pre{
  --tw-bg-opacity: 1;
  background-color: rgba(31, 41, 55, 1);
  background-color: rgba(31, 41, 55, var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.font-display{
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
h1, .h1{
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
h2, .h2{
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
}
h3, .h3{
  line-height: 1.5;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  border: none;
  padding: 0;
  border-radius: 0;
  transition: none;
}
h4, .h4{
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
}
h5, .h5{
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
h6, .h6{
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.link{
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, 1);
  color: rgba(239, 68, 68, var(--tw-text-opacity, 1));
}
.link:hover,.link:focus{
  --tw-text-opacity: 1;
  color: rgba(220, 38, 38, 1);
  color: rgba(220, 38, 38, var(--tw-text-opacity, 1));
}
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.transition {
  transition: ease-in-out 0.2s all;
}
/* Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
/* =========================================================================
   General
   ========================================================================= */
/* =========================================================================
   Loaders
   ========================================================================= */
/* =========================================================================
   Headings
   ========================================================================= */
.dark .braintree-placeholder,
.braintree-heading:not(.does-not-exist) {
  color: #d4d4d4;
}
.dark .braintree-icon--bordered {
  background: #FFFFFF;
  border: 1px solid #BBBBBB;
}
/* =========================================================================
   Upper Container
   ========================================================================= */
.dark .braintree-upper-container::-csstools-invalid-before {
  background-color: #FAFAFA;
  border: 1px solid #B5B5B5;
}
/* =========================================================================
   Payment Options
   ========================================================================= */
.dark .braintree-option {
  background-color: #171717;
  border-color: #B5B5B5;
}
.dark .braintree-option:hover {
  background: #404040;
}
.dark .braintree-option.braintree-disabled {
  background: #EAEAEA;
}
.dark .braintree-option.braintree-disabled .braintree-option__label {
  color: #787878;
}
.dark .braintree-option.braintree-disabled .braintree-option__disabled-message span {
  border-bottom: 1px solid #B5B5B5;
}
.dark .braintree-option .braintree-option__label {
  color: #d4d4d4;
}
/* =========================================================================
   Apple Pay buttons
   ========================================================================= */
@supports not (-webkit-appearance: -apple-pay-button) {
  .dark .apple-pay-button-black {
    background-image: -webkit-named-image(apple-pay-logo-white);
    background-color: black;
  }
  .dark .apple-pay-button-white {
    background-image: -webkit-named-image(apple-pay-logo-black);
    background-color: white;
  }
  .dark .apple-pay-button-white-with-line {
    background-image: -webkit-named-image(apple-pay-logo-black);
    background-color: white;
    border: 0.5px solid black;
  }
}
/* =========================================================================
   Sheets
   ========================================================================= */
.dark .braintree-sheet {
  background-color: #171717;
  border: 1px solid #B5B5B5;
}
.dark .braintree-sheet--has-error .braintree-sheet {
  border: 2px solid #CA2A2A;
}
.dark .braintree-sheet--has-error .braintree-methods--edit .braintree-method {
  border-left: 2px solid #CA2A2A;
  border-right: 2px solid #CA2A2A;
}
.dark .braintree-sheet--has-error .braintree-methods--edit .braintree-method:first-child {
  border-top: 2px solid #CA2A2A;
}
.dark .braintree-sheet--has-error .braintree-methods--edit .braintree-method:last-child {
  border-bottom: 2px solid #CA2A2A;
}
.dark .braintree-sheet--has-error .braintree-sheet__error {
  color: #CA2A2A;
}
.dark .braintree-sheet--has-error .braintree-sheet__error .braintree-sheet__error-icon use {
  fill: #CA2A2A;
}
.dark .braintree-sheet--has-error .braintree-sheet__error .braintree-sheet__error-text {
  color: #CA2A2A;
}
.dark .braintree-show-methods .braintree-sheet--active.braintree-sheet--has-error .braintree-sheet {
  border-color: #CA2A2A;
}
.dark .braintree-show-methods .braintree-sheet--active .braintree-sheet {
  border-color: #219653;
}
.dark .braintree-sheet__header {
  border-bottom: 1px solid #B5B5B5;
}
.dark .braintree-sheet__header .braintree-sheet__text {
  color: #FFFFFF;
}
/* =========================================================================
   Input Forms
   ========================================================================= */
.dark .braintree-form__hosted-field iframe {
  background-color: #171717;
}
.dark .braintree-sheet__content--form .braintree-form__field-group .braintree-form__label {
  color: #FFFFFF;
}
.dark .braintree-sheet__content--form .braintree-form__field-group .braintree-form__descriptor {
  color: #FFFFFF;
}
/* =========================================================================
   Payment Methods
   ========================================================================= */
.dark .braintree-method {
  background-color: white;
  border-color: #B5B5B5;
}
.dark .braintree-method .braintree-method__label {
  color: #000000;
}
.dark .braintree-method .braintree-method__icon {
  background-color: #FAFAFA;
  fill: #FAFAFA;
}
.dark .braintree-methods--active:not(.braintree-methods--edit) .braintree-method--active {
  border-color: #219653;
}
.dark .braintree-methods--active:not(.braintree-methods--edit) .braintree-method--active .braintree-method__check {
  background-color: #219653;
}
.dark .braintree-methods--active:not(.braintree-methods--edit) .braintree-method--active .braintree-method__icon {
  fill: white;
}
.dark .braintree-method__delete-container .braintree-method__delete {
  background-color: #EC493A;
}
.dark .braintree-method__delete-container .braintree-method__delete:hover {
  background-color: #c62213;
}
.dark .braintree-delete-confirmation {
  background: #FAFAFA !important;
  color: #606060;
}
.dark .braintree-delete-confirmation .braintree-delete-confirmation__button-container .braintree-delete-confirmation__button {
  border-top: 1px solid #B5B5B5;
  background: #FAFAFA;
  color: #C4C4C4;
}
.dark .braintree-delete-confirmation .braintree-delete-confirmation__button-container [data-braintree-id="delete-confirmation__yes"] {
  color: white;
  background: #EC493A;
  border-left: solid 1px #b5b5b5;
}
.dark .braintree-delete-confirmation .braintree-delete-confirmation__button-container [data-braintree-id="delete-confirmation__yes"]:hover {
  background: #c62213;
}
.dark .braintree-delete-confirmation .braintree-delete-confirmation__button-container [data-braintree-id="delete-confirmation__no"] {
  color: #666666;
}
.dark .braintree-delete-confirmation .braintree-delete-confirmation__button-container [data-braintree-id="delete-confirmation__no"]:hover {
  background: #efefef;
}
.dark .braintree-large-button {
  background: #404040;
  color: #e5e5e5;
}
.dark .braintree-large-button:hover {
  background: #262626;
}
.dark .braintree-large-button:hover span {
  border-color: black;
}
.dark .braintree-large-button span {
  border-bottom: 1px solid #B5B5B5;
}
/* =========================================================================
   Dropin Visibility States
   ========================================================================= */
/* =========================================================================
   Javascript hooks
   ========================================================================= */
/* =========================================================================
   Flexbox-free styling
   ========================================================================= */
/* Calendar Component Styles */
/* Event Items */
.event-item {
  position: relative !important;
  overflow: visible !important;
  z-index: 10 !important;
}
.text-xs.px-2.py-1.rounded.truncate.border {
  position: relative !important;
  z-index: 10 !important;
}
/* Dropdowns */
.event-dropdown,
.arrival-dropdown,
.pickup-dropdown {
  position: fixed !important;
  z-index: 999999 !important;
  background-color: #ffffff !important;
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 0 !important;
  min-width: 10rem !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  opacity: 1 !important;
  backdrop-filter: none !important;
  pointer-events: auto !important;
}
.event-dropdown .py-1,
.arrival-dropdown .py-1,
.pickup-dropdown .py-1 {
  background-color: #ffffff !important;
  background: #ffffff !important;
}
/* Calendar Grid Elements */
.grid.grid-cols-7 {
  position: relative !important;
  z-index: 0 !important;
}
.min-h-\[80px\] {
  position: relative !important;
  z-index: 0 !important;
}
.simple-calendar {
  position: relative !important;
  z-index: 0 !important;
}
.bg-white.shadow-md {
  position: relative !important;
  z-index: 0 !important;
}
#event-calendar {
  position: relative !important;
  z-index: 0 !important;
}
.space-y-1 {
  position: relative !important;
  z-index: 0 !important;
}
/* Profile Sidebar Interactions */
/* Lower z-index when sidebar is open */
.profile-sidebar.open ~ * .event-item,
body:has(.profile-sidebar.open) .event-item {
  z-index: 1 !important;
}
body:has(.profile-sidebar.open) .event-dropdown,
body:has(.profile-sidebar.open) .arrival-dropdown,
body:has(.profile-sidebar.open) .pickup-dropdown {
  z-index: 1 !important;
}
body:has(.profile-sidebar.open) .text-xs.px-2.py-1.rounded.truncate.border {
  z-index: 1 !important;
}
/* Calendar Day Cell */
.calendar-day-cell {
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.calendar-day-cell:hover {
  background-color: #f9fafb;
}
/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .event-dropdown,
  .arrival-dropdown,
  .pickup-dropdown {
    background-color: #1f2937 !important;
    background: #1f2937 !important;
    border-color: #374151 !important;
  }
  
  .event-dropdown .py-1,
  .arrival-dropdown .py-1,
  .pickup-dropdown .py-1 {
    background-color: #1f2937 !important;
    background: #1f2937 !important;
  }
  
  .calendar-day-cell:hover {
    background-color: #374151;
  }
}
.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  box-sizing: border-box;
  touch-action: manipulation;
  background: #fff;
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0,0,0,0.08);
}
.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}
.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}
.flatpickr-calendar.animate.open {
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}
.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}
.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  box-shadow: none !important;
}
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}
.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}
.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}
.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}
.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  left: 22px;
}
.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.arrowRight:before,
.flatpickr-calendar.rightMost:after,
.flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px;
}
.flatpickr-calendar.arrowCenter:before,
.flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%;
}
.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}
.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}
.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}
.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}
.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}
.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}
.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}
.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}
.flatpickr-calendar:focus {
  outline: 0;
}
.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}
.flatpickr-months {
  display: flex;
}
.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0,0,0,0.9);
  fill: rgba(0,0,0,0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  overflow: hidden;
  flex: 1;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-text-decoration: none;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(0,0,0,0.9);
  fill: rgba(0,0,0,0.9);
}
.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}
.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
/*
      /*rtl:begin:ignore*/
/*
      */
  left: 0;
/*
      /*rtl:end:ignore*/
/*
      */
}
/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
/*
      /*rtl:begin:ignore*/
/*
      */
  right: 0;
/*
      /*rtl:end:ignore*/
/*
      */
}
/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}
.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  transition: fill 0.1s;
  fill: inherit;
}
.numInputWrapper {
  position: relative;
  height: auto;
}
.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}
.numInputWrapper input {
  width: 100%;
}
.numInputWrapper input::-ms-clear {
  display: none;
}
.numInputWrapper input::-webkit-outer-spin-button,
.numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57,57,57,0.15);
  box-sizing: border-box;
}
.numInputWrapper span:hover {
  background: rgba(0,0,0,0.1);
}
.numInputWrapper span:active {
  background: rgba(0,0,0,0.2);
}
.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}
.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}
.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57,57,57,0.6);
  top: 26%;
}
.numInputWrapper span.arrowDown {
  top: 50%;
}
.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57,57,57,0.6);
  top: 40%;
}
.numInputWrapper span svg {
  width: inherit;
  height: auto;
}
.numInputWrapper span svg path {
  fill: rgba(0,0,0,0.5);
}
.numInputWrapper:hover {
  background: rgba(0,0,0,0.05);
}
.numInputWrapper:hover span {
  opacity: 1;
}
.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  transform: translate3d(0px, 0px, 0px);
}
.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}
.flatpickr-current-month span.cur-month:hover {
  background: rgba(0,0,0,0.05);
}
.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0;
  display: inline-block;
}
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0,0,0,0.9);
}
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0,0,0,0.9);
}
.flatpickr-current-month input.cur-year {
  background: transparent;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: baseline;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}
.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0,0,0,0.5);
  background: transparent;
  pointer-events: none;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: baseline;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
.flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0,0,0,0.05);
}
.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0;
}
.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  height: 28px;
}
.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: flex;
  flex: 1;
}
span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0,0,0,0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  flex: 1;
  font-weight: bolder;
}
.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}
.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  width: 307.875px;
}
.flatpickr-days:focus {
  outline: 0;
}
.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  box-sizing: border-box;
  display: inline-block;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: space-around;
  transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}
.dayContainer + .dayContainer {
  box-shadow: -1px 0 0 #e6e6e6;
}
.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  justify-content: center;
  text-align: center;
}
.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}
.flatpickr-day.today {
  border-color: #959ea9;
}
.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}
.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}
.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}
.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  box-shadow: -10px 0 0 #569ff7;
}
.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}
.flatpickr-day.inRange {
  border-radius: 0;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57,57,57,0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57,57,57,0.1);
}
.flatpickr-day.week.selected {
  border-radius: 0;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}
.flatpickr-day.hidden {
  visibility: hidden;
}
.rangeMode .flatpickr-day {
  margin-top: 1px;
}
.flatpickr-weekwrapper {
  float: left;
}
.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  box-shadow: 1px 0 0 #e6e6e6;
}
.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}
.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57,57,57,0.3);
  background: transparent;
  cursor: default;
  border: none;
}
.flatpickr-innerContainer {
  display: block;
  display: flex;
  box-sizing: border-box;
  overflow: hidden;
}
.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  box-sizing: border-box;
}
.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
}
.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}
.flatpickr-time .numInputWrapper {
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}
.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}
.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}
.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}
.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}
.flatpickr-time input {
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}
.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}
.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}
.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-self: center;
}
.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}
.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #eee;
}
.flatpickr-input[readonly] {
  cursor: pointer;
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}
[data-tippy-root]{max-width:calc(100vw - 10px)}
.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;white-space:normal;outline:0;transition-property:transform,visibility,opacity}
.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}
.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:currentcolor;border-top-color:initial;transform-origin:center top}
.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}
.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:currentcolor;border-bottom-color:initial;transform-origin:center bottom}
.tippy-box[data-placement^=left]>.tippy-arrow{right:0}
.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:currentcolor;border-left-color:initial;right:-7px;transform-origin:center left}
.tippy-box[data-placement^=right]>.tippy-arrow{left:0}
.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:currentcolor;border-right-color:initial;transform-origin:center right}
.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}
.tippy-arrow{width:16px;height:16px;color:#333}
.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}
.tippy-content{position:relative;padding:5px 9px;z-index:1}
/**
 * tom-select.css (v2.4.3)
 * Copyright (c) contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 */
.ts-control {
  border: 1px solid #d0d0d0;
  padding: 8px 8px;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  box-shadow: none;
  border-radius: 3px;
  display: flex;
  flex-wrap: wrap;
}
.ts-wrapper.multi.has-items .ts-control {
  padding: calc(8px - 2px - 0) 8px calc(8px - 2px - 3px - 0);
}
.full .ts-control {
  background-color: #fff;
}
.disabled .ts-control, .disabled .ts-control * {
  cursor: default !important;
}
.focus .ts-control {
  box-shadow: none;
}
.ts-control > * {
  vertical-align: baseline;
  display: inline-block;
}
.ts-wrapper.multi .ts-control > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
  background: #f2f2f2;
  color: #303030;
  border: 0 solid #d0d0d0;
}
.ts-wrapper.multi .ts-control > div.active {
  background: #e8e8e8;
  color: #303030;
  border: 0 solid #cacaca;
}
.ts-wrapper.multi.disabled .ts-control > div, .ts-wrapper.multi.disabled .ts-control > div.active {
  color: rgb(124.5, 124.5, 124.5);
  background: white;
  border: 0 solid white;
}
.ts-control > input {
  flex: 1 1 auto;
  min-width: 7rem;
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
          user-select: auto !important;
  box-shadow: none !important;
}
.ts-control > input::-ms-clear {
  display: none;
}
.ts-control > input:focus {
  outline: none !important;
}
.has-items .ts-control > input {
  margin: 0 4px !important;
}
.ts-control.rtl {
  text-align: right;
}
.ts-control.rtl.single .ts-control:after {
  left: 15px;
  right: auto;
}
.ts-control.rtl .ts-control > input {
  margin: 0 4px 0 -2px !important;
}
.disabled .ts-control {
  opacity: 0.5;
  background-color: #fafafa;
}
.input-hidden .ts-control > input {
  opacity: 0;
  position: absolute;
  left: -10000px;
}
.ts-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #fff;
  margin: 0.25rem 0 0;
  border-top: 0 none;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 3px 3px;
}
.ts-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}
.ts-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  border-radius: 1px;
}
.ts-dropdown .option,
.ts-dropdown .optgroup-header,
.ts-dropdown .no-results,
.ts-dropdown .create {
  padding: 5px 8px;
}
.ts-dropdown .option, .ts-dropdown [data-disabled], .ts-dropdown [data-disabled] [data-selectable].option {
  cursor: inherit;
  opacity: 0.5;
}
.ts-dropdown [data-selectable].option {
  opacity: 1;
  cursor: pointer;
}
.ts-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}
.ts-dropdown .optgroup-header {
  color: #303030;
  background: #fff;
  cursor: default;
}
.ts-dropdown .active {
  background-color: #f5fafd;
  color: #495c68;
}
.ts-dropdown .active.create {
  color: #495c68;
}
.ts-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}
.ts-dropdown .spinner {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 5px 8px;
}
.ts-dropdown .spinner::after {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  margin: 3px;
  border-radius: 50%;
  border: 5px solid #d0d0d0;
  border-color: #d0d0d0 transparent #d0d0d0 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ts-dropdown-content {
  overflow-x: hidden;
  overflow-y: auto;
  overflow: hidden auto;
  max-height: 200px;
  scroll-behavior: smooth;
}
.ts-wrapper.plugin-drag_drop .ts-dragging {
  color: transparent !important;
}
.ts-wrapper.plugin-drag_drop .ts-dragging > * {
  visibility: hidden !important;
}
.plugin-checkbox_options:not(.rtl) .option input {
  margin-right: 0.5rem;
}
.plugin-checkbox_options.rtl .option input {
  margin-left: 0.5rem;
}
/* stylelint-disable function-name-case */
.plugin-clear_button {
  --ts-pr-clear-button: 1em;
}
.plugin-clear_button .clear-button {
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(8px - 6px);
  margin-right: 0 !important;
  background: transparent !important;
  transition: opacity 0.5s;
  cursor: pointer;
}
.plugin-clear_button.form-select .clear-button, .plugin-clear_button.single .clear-button {
  right: max(0px, 8px);
  right: max(var(--ts-pr-caret), 8px);
}
.plugin-clear_button.focus.has-items .clear-button, .plugin-clear_button:not(.disabled):hover.has-items .clear-button {
  opacity: 1;
}
.ts-wrapper .dropdown-header {
  position: relative;
  padding: 10px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: color-mix(#fff, #d0d0d0, 85%);
  border-radius: 3px 3px 0 0;
}
.ts-wrapper .dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
}
.ts-wrapper .dropdown-header-close:hover {
  color: black;
}
.plugin-dropdown_input.focus.dropdown-active .ts-control {
  box-shadow: none;
  border: 1px solid #d0d0d0;
}
.plugin-dropdown_input .dropdown-input {
  border: 1px solid #d0d0d0;
  border-width: 0 0 1px;
  display: block;
  padding: 8px 8px;
  box-shadow: none;
  width: 100%;
  background: transparent;
}
.plugin-dropdown_input .items-placeholder {
  border: 0 none !important;
  box-shadow: none !important;
  width: 100%;
}
.plugin-dropdown_input.has-items .items-placeholder, .plugin-dropdown_input.dropdown-active .items-placeholder {
  display: none !important;
}
.ts-wrapper.plugin-input_autogrow.has-items .ts-control > input {
  min-width: 0;
}
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input {
  flex: none;
  min-width: 4px;
}
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::-moz-placeholder {
  color: transparent;
}
.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::placeholder {
  color: transparent;
}
.ts-dropdown.plugin-optgroup_columns .ts-dropdown-content {
  display: flex;
}
.ts-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}
.ts-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}
.ts-dropdown.plugin-optgroup_columns .optgroup::before {
  display: none;
}
.ts-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}
.ts-wrapper.plugin-remove_button .item {
  display: inline-flex;
  align-items: center;
}
.ts-wrapper.plugin-remove_button .item .remove {
  color: inherit;
  -webkit-text-decoration: none;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 0 6px;
  border-radius: 0 2px 2px 0;
  box-sizing: border-box;
}
.ts-wrapper.plugin-remove_button .item .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}
.ts-wrapper.plugin-remove_button.disabled .item .remove:hover {
  background: none;
}
.ts-wrapper.plugin-remove_button .remove-single {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 23px;
}
.ts-wrapper.plugin-remove_button:not(.rtl) .item {
  padding-right: 0 !important;
}
.ts-wrapper.plugin-remove_button:not(.rtl) .item .remove {
  border-left: 1px solid #d0d0d0;
  margin-left: 6px;
}
.ts-wrapper.plugin-remove_button:not(.rtl) .item.active .remove {
  border-left-color: #cacaca;
}
.ts-wrapper.plugin-remove_button:not(.rtl).disabled .item .remove {
  border-left-color: white;
}
.ts-wrapper.plugin-remove_button.rtl .item {
  padding-left: 0 !important;
}
.ts-wrapper.plugin-remove_button.rtl .item .remove {
  border-right: 1px solid #d0d0d0;
  margin-right: 6px;
}
.ts-wrapper.plugin-remove_button.rtl .item.active .remove {
  border-right-color: #cacaca;
}
.ts-wrapper.plugin-remove_button.rtl.disabled .item .remove {
  border-right-color: white;
}
:root {
  --ts-pr-clear-button: 0px;
  --ts-pr-caret: 0px;
  --ts-pr-min: .75rem;
}
.ts-wrapper.single .ts-control, .ts-wrapper.single .ts-control input {
  cursor: pointer;
}
.ts-control:not(.rtl) {
  padding-right: max(.75rem, 0px + 0px) !important;
  padding-right: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;
}
.ts-control.rtl {
  padding-left: max(.75rem, 0px + 0px) !important;
  padding-left: max(var(--ts-pr-min), var(--ts-pr-clear-button) + var(--ts-pr-caret)) !important;
}
.ts-wrapper {
  position: relative;
}
.ts-dropdown,
.ts-control,
.ts-control input {
  color: #303030;
  font-family: inherit;
  font-size: 13px;
  line-height: 18px;
}
.ts-control,
.ts-wrapper.single.input-active .ts-control {
  background: #fff;
  cursor: text;
}
.ts-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}
/*# sourceMappingURL=tom-select.css.map */
input,
textarea,
select {
  border-radius: 5px !important;
}
tr.over-budget {
  background-color: #fee2e2 !important;
  border-color: #ef4444 !important;
}
.overflow-x-auto {
  max-width: 100%;
  overflow-x: auto;
}
input[type='number'] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}
input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
tr.over-budget {
  background: red !important;
}
tr.over-budget td.border,
tr.over-budget th.border {
  border-color: #ef4444 !important;
  background-color: #fef2f2;
}
/* Modal Styles */
.modal-overlay {
  backdrop-filter: blur(2px);
}
.modal-container {
  animation: modalSlideIn 0.3s ease-out;
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.modal-close:hover {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}
/* Force navigation link colors to black */
.nav-container nav .nav-link,
.top-nav .nav-link {
  color: #000000 !important;
}
.nav-container nav .nav-link:hover,
.top-nav .nav-link:hover {
  color: #000000 !important;
}
/* Force profile sidebar bullet removal */
.profile-sidebar ul,
.profile-sidebar nav ul,
.profile-sidebar .space-y-2 {
  list-style: none !important;
  padding-left: 0 !important;
}
.profile-sidebar li {
  list-style: none !important;
}
/* Force navigation container positioning */
.top-nav {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
.nav-container {
  position: static !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex: 1 !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
}
@media (min-width: 1024px) {
  .nav-container {
    position: static !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex: 1 !important;
  }

  .nav-container nav {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
  }
}
/* Cache buster: Tue Oct  7 13:21:13 NZDT 2025 */
/* Tailwind directives */
*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
  --tw-ring-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
  --tw-ring-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
/* ! tailwindcss v3.4.18 | MIT License | https://tailwindcss.com */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: Public Sans, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 rgba(0,0,0,0);
}
[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(1px + 0px) #2563eb, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}
input::-moz-placeholder, textarea::-moz-placeholder{
  color: #6b7280;
  opacity: 1;
}
input::placeholder,textarea::placeholder{
  color: #6b7280;
  opacity: 1;
}
::-webkit-datetime-edit-fields-wrapper{
  padding: 0;
}
::-webkit-date-and-time-value{
  min-height: 1.5em;
  text-align: inherit;
}
::-webkit-datetime-edit{
  display: inline-flex;
}
::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{
  padding-top: 0;
  padding-bottom: 0;
}
select{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}
[multiple],[size]:where(select:not([size="1"])){
  background-image: none;
  background-image: initial;
  background-position: 0 0;
  background-position: initial;
  background-repeat: repeat;
  background-repeat: initial;
  background-size: auto auto;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: inherit;
          print-color-adjust: inherit;
}
[type='checkbox'],[type='radio']{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 rgba(0,0,0,0);
}
[type='checkbox']{
  border-radius: 0px;
}
[type='radio']{
  border-radius: 100%;
}
[type='checkbox']:focus,[type='radio']:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(2px + 2px) #2563eb, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
[type='checkbox']:checked,[type='radio']:checked{
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
[type='checkbox']:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}
@media (forced-colors: active) {
  [type='checkbox']:checked{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
[type='radio']:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}
@media (forced-colors: active) {
  [type='radio']:checked{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus{
  border-color: transparent;
  background-color: currentColor;
}
[type='checkbox']:indeterminate{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media (forced-colors: active) {
  [type='checkbox']:indeterminate{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus{
  border-color: transparent;
  background-color: currentColor;
}
[type='file']{
  background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
  background: initial;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}
[type='file']:focus{
  outline: 1px solid ButtonText;
  outline: 1px auto -webkit-focus-ring-color;
}
.\!container{
  width: 100% !important;
}
.container{
  width: 100%;
}
@media (min-width: 640px){
  .\!container{
    max-width: 640px !important;
  }
  .container{
    max-width: 640px;
  }
}
@media (min-width: 768px){
  .\!container{
    max-width: 768px !important;
  }
  .container{
    max-width: 768px;
  }
}
@media (min-width: 1024px){
  .\!container{
    max-width: 1024px !important;
  }
  .container{
    max-width: 1024px;
  }
}
@media (min-width: 1280px){
  .\!container{
    max-width: 1280px !important;
  }
  .container{
    max-width: 1280px;
  }
}
@media (min-width: 1536px){
  .\!container{
    max-width: 1536px !important;
  }
  .container{
    max-width: 1536px;
  }
}
.prose{
  color: var(--tw-prose-body);
  max-width: 65ch;
}
.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-links);
  -webkit-text-decoration: underline;
  text-decoration: underline;
  font-weight: 500;
}
.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-bold);
  font-weight: 600;
}
.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}
.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-alpha;
}
.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-alpha;
}
.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-roman;
}
.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-roman;
}
.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-roman;
}
.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-roman;
}
.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: decimal;
}
.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker{
  font-weight: 400;
  color: var(--tw-prose-counters);
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker{
  color: var(--tw-prose-bullets);
}
.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}
.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}
.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-left-width: 0.25rem;
  border-left-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-left: 1em;
}
.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
  content: open-quote;
}
.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
  content: close-quote;
}
.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}
.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 900;
  color: inherit;
}
.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}
.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 800;
  color: inherit;
}
.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}
.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 700;
  color: inherit;
}
.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 700;
  color: inherit;
}
.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px var(--tw-prose-kbd-shadows), 0 3px 0 var(--tw-prose-kbd-shadows);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-right: 0.375em;
  padding-bottom: 0.1875em;
  padding-left: 0.375em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
  content: "`";
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
  content: "`";
}
.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
  font-size: 0.875em;
}
.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
  font-size: 0.9em;
}
.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-right: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-left: 1.1428571em;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
  content: none;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
  content: none;
}
.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  width: 100%;
  table-layout: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}
.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}
.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}
.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-bottom-width: 0;
}
.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  vertical-align: baseline;
}
.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}
.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  vertical-align: top;
}
.prose :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  text-align: left;
}
.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}
.prose{
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: rgba(17, 24, 39, 0.1);
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: rgba(255, 255, 255, 0.1);
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgba(0, 0, 0, 0.5);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}
.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-left: 0.375em;
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-left: 0.375em;
}
.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
}
.prose :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.25em;
}
.prose :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
}
.prose :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.25em;
}
.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.5em;
  padding-left: 1.625em;
}
.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-left: 0;
}
.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-right: 0;
}
.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-top: 0.5714286em;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-left: 0;
}
.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-right: 0;
}
.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 0;
}
.prose-lg{
  font-size: 1.125rem;
  line-height: 1.7777778;
}
.prose-lg :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
}
.prose-lg :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 1.2222222em;
  line-height: 1.4545455;
  margin-top: 1.0909091em;
  margin-bottom: 1.0909091em;
}
.prose-lg :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.6666667em;
  margin-bottom: 1.6666667em;
  padding-left: 1em;
}
.prose-lg :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 2.6666667em;
  margin-top: 0;
  margin-bottom: 0.8333333em;
  line-height: 1;
}
.prose-lg :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 1.6666667em;
  margin-top: 1.8666667em;
  margin-bottom: 1.0666667em;
  line-height: 1.3333333;
}
.prose-lg :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 1.3333333em;
  margin-top: 1.6666667em;
  margin-bottom: 0.6666667em;
  line-height: 1.5;
}
.prose-lg :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.7777778em;
  margin-bottom: 0.4444444em;
  line-height: 1.5555556;
}
.prose-lg :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}
.prose-lg :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8888889em;
  border-radius: 0.3125rem;
  padding-top: 0.2222222em;
  padding-right: 0.4444444em;
  padding-bottom: 0.2222222em;
  padding-left: 0.4444444em;
}
.prose-lg :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8888889em;
}
.prose-lg :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8666667em;
}
.prose-lg :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.875em;
}
.prose-lg :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8888889em;
  line-height: 1.75;
  margin-top: 2em;
  margin-bottom: 2em;
  border-radius: 0.375rem;
  padding-top: 1em;
  padding-right: 1.5em;
  padding-bottom: 1em;
  padding-left: 1.5em;
}
.prose-lg :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-left: 1.5555556em;
}
.prose-lg :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-left: 1.5555556em;
}
.prose-lg :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.6666667em;
  margin-bottom: 0.6666667em;
}
.prose-lg :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-left: 0.4444444em;
}
.prose-lg :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-left: 0.4444444em;
}
.prose-lg :where(.prose-lg > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}
.prose-lg :where(.prose-lg > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
}
.prose-lg :where(.prose-lg > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.3333333em;
}
.prose-lg :where(.prose-lg > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
}
.prose-lg :where(.prose-lg > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.3333333em;
}
.prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}
.prose-lg :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
}
.prose-lg :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
}
.prose-lg :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.6666667em;
  padding-left: 1.5555556em;
}
.prose-lg :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 3.1111111em;
  margin-bottom: 3.1111111em;
}
.prose-lg :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-lg :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-lg :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-lg :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-lg :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8888889em;
  line-height: 1.5;
}
.prose-lg :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-right: 0.75em;
  padding-bottom: 0.75em;
  padding-left: 0.75em;
}
.prose-lg :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-left: 0;
}
.prose-lg :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-right: 0;
}
.prose-lg :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-top: 0.75em;
  padding-right: 0.75em;
  padding-bottom: 0.75em;
  padding-left: 0.75em;
}
.prose-lg :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-left: 0;
}
.prose-lg :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-right: 0;
}
.prose-lg :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}
.prose-lg :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8888889em;
  line-height: 1.5;
  margin-top: 1em;
}
.prose-lg :where(.prose-lg > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose-lg :where(.prose-lg > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 0;
}
.\!btn {
    display: inline-flex !important;
    padding: 8px 12px !important;
    -webkit-text-decoration: none !important;
    text-decoration: none !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 4px !important;
    border-radius: 0 !important;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 20px !important
  }
.btn {
    display: inline-flex;
    padding: 8px 12px;
    -webkit-text-decoration: none;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 0;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
  }
.btn:hover,.btn:focus {
      cursor: pointer;
    }
.btn:focus-visible {
      outline: 2px solid #ec1c24;
      outline: 2px solid var(--base-border-focus);
      outline-offset: 2px;
    }
.btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }
.btn svg {
      width: 16px;
      height: 16px;
    }
.btn-outline {
    box-shadow: 0 0 rgba(0,0,0,0);
  }
.btn-xs {
    padding: 4px 8px;
    font-size: 12px;
    line-height: 1;
  }
.btn-sm,
  .btn-small {
    padding: 4px 8px;
  }
.btn-lg,
  .btn-large {
    padding: 10px 14px;
  }
.btn-xl {
    padding: 12px 16px;
  }
.btn-icon {
    padding: 8px;
    border-radius: 0;
  }
.btn-icon.btn-xs {
      padding: 4px;
    }
.btn-icon.btn-sm {
      padding: 10px;
    }
.btn-icon.btn-lg {
      padding: 12px;
    }
.btn-icon.btn-xl {
      padding: 14px;
    }
.btn-icon svg {
      width: 24px;
      height: 24px;
    }
.btn-expanded,
  .btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
  }
.btn-primary {
    background: #ec1c24;
    background: var(--bg-primary);
    color: #fff;
    color: var(--text-on-primary);
  }
.btn-primary:hover {
      background: #f16222;
      background: var(--bg-primary-hover);
      color: #fff;
      color: var(--text-on-primary);
    }
.btn-primary:disabled:hover {
      background: #ec1c24;
      background: var(--bg-primary);
      color: #fff;
      color: var(--text-on-primary);
    }
.btn-primary.btn-outline {
      background: transparent;
      color: #ec1c24;
      color: var(--text-primary);
      border: 1px solid #f16222;
      border: 1px solid var(--border-primary-hover);
    }
.btn-primary.btn-outline:hover {
        background: #f16222;
        background: var(--bg-primary-hover);
        color: #fff;
        color: var(--text-on-primary);
        border: 1px solid #f16222;
        border: 1px solid var(--bg-primary-hover);
      }
.btn-secondary,
  .btn-tertiary {
    background: #fff;
    background: var(--bg-secondary);
    color: #1e293b;
    color: var(--text-on-secondary);
    border: 1px solid #cbd5e1;
    border: 1px solid var(--border-secondary);
  }
.btn-secondary:hover,.btn-tertiary:hover {
      background: #f1f5f9;
      background: var(--bg-secondary-hover);
      color: #334155;
      color: var(--text-on-secondary-hover);
    }
.btn-secondary:disabled:hover {
      background: #fff;
      background: var(--bg-secondary);
      color: #1e293b;
      color: var(--text-on-secondary);
    }
.btn-tertiary:disabled:hover {
      background: #fff;
      background: var(--bg-secondary);
      color: #1e293b;
      color: var(--text-on-secondary);
    }
.btn-outline.btn-secondary,.btn-outline.btn-tertiary {
      background: transparent;
      color: #1e293b;
      color: var(--text-on-secondary);
      border: 1px solid #cbd5e1;
      border: 1px solid var(--border-secondary);
    }
.btn-outline.btn-secondary:hover,.btn-outline.btn-tertiary:hover {
        background: #f1f5f9;
        background: var(--bg-secondary-hover);
        color: #334155;
        color: var(--text-on-secondary-hover);
      }
.btn-danger {
    background: #b91c1c;
    background: var(--bg-danger);
    color: #fff;
    color: var(--text-on-danger);
  }
.btn-danger:hover {
      background: #dc2626;
      background: var(--bg-danger-hover);
      color: #fff;
      color: var(--text-on-danger);
    }
.btn-danger:disabled:hover {
      background: #b91c1c;
      background: var(--bg-danger);
      color: #fff;
      color: var(--text-on-danger);
    }
.btn-danger:focus-visible {
      outline: 2px solid #ef4444;
      outline: 2px solid var(--border-danger-focus);
      outline-offset: 2px;
    }
.btn-danger.btn-outline {
      background: transparent;
      color: #b91c1c;
      color: var(--text-danger);
      border: 1px solid #ef4444;
      border: 1px solid var(--border-danger);
    }
.btn-danger.btn-outline:hover {
        background: #dc2626;
        background: var(--bg-danger-hover);
        color: #fff;
        color: var(--text-on-danger);
        border: 1px solid #dc2626;
        border: 1px solid var(--bg-danger-hover);
      }
.btn-success {
    background: #166534;
    background: var(--bg-success);
    color: #fff;
    color: var(--text-on-success);
  }
.btn-success:hover {
      background: #15803d;
      background: var(--bg-success-hover);
      color: #fff;
      color: var(--text-on-success);
    }
.btn-success:disabled:hover {
      background: #166534;
      background: var(--bg-success);
      color: #fff;
      color: var(--text-on-success);
    }
.btn-success:focus-visible {
      outline: 2px solid #22c55e;
      outline: 2px solid var(--border-success-focus);
      outline-offset: 2px;
    }
.btn-success.btn-outline {
      background: transparent;
      color: #166534;
      color: var(--text-success);
      border: 1px solid #16a34a;
      border: 1px solid var(--border-success);
    }
.btn-success.btn-outline:hover {
        background: #15803d;
        background: var(--bg-success-hover);
        color: #fff;
        color: var(--text-on-success);
        border: 1px solid #15803d;
        border: 1px solid var(--bg-success-hover);
      }
.btn-light,
  .btn-white,
  .btn-gray {
    background: #fff;
    background: var(--bg-light);
    color: #1e293b;
    color: var(--text-on-light);
    border: 1px solid #cbd5e1;
    border: 1px solid var(--border-light);
  }
.btn-light:hover,.btn-white:hover,.btn-gray:hover {
      background: #f8fafc;
      background: var(--bg-light-hover);
      color: #1e293b;
      color: var(--text-on-light);
    }
.btn-light:disabled:hover {
      background: #fff;
      background: var(--bg-light);
      color: #1e293b;
      color: var(--text-on-light);
    }
.btn-white:disabled:hover {
      background: #fff;
      background: var(--bg-light);
      color: #1e293b;
      color: var(--text-on-light);
    }
.btn-gray:disabled:hover {
      background: #fff;
      background: var(--bg-light);
      color: #1e293b;
      color: var(--text-on-light);
    }
.btn-outline.btn-light,.btn-outline.btn-white,.btn-outline.btn-gray {
      background: transparent;
      color: #1e293b;
      color: var(--text-on-light-outline);
      border: 1px solid #cbd5e1;
      border: 1px solid var(--border-light);
    }
.btn-outline.btn-light:hover,.btn-outline.btn-white:hover,.btn-outline.btn-gray:hover {
        background: #f8fafc;
        background: var(--bg-light-hover);
        color: #1e293b;
        color: var(--text-on-light);
      }
.btn-dark {
    background: #1e293b;
    background: var(--bg-dark);
    color: #fff;
    color: var(--text-on-dark);
    border: 1px solid #1e293b;
    border: 1px solid var(--bg-dark);
  }
.btn-dark:hover {
      background: #334155;
      background: var(--bg-dark-hover);
      color: #fff;
      color: var(--text-on-dark);
      border: 1px solid #334155;
      border: 1px solid var(--bg-dark-hover);
    }
.btn-dark:disabled:hover {
      background: #1e293b;
      background: var(--bg-dark);
      color: #fff;
      color: var(--text-on-dark);
    }
.btn-dark:focus-visible {
      outline: 2px solid #64748b;
      outline: 2px solid var(--border-dark-focus);
      outline-offset: 2px;
    }
.btn-dark.btn-outline {
      background: transparent;
      color: #1e293b;
      color: var(--text-on-dark-outline);
      border: 1px solid #334155;
      border: 1px solid var(--border-dark);
    }
.btn-dark.btn-outline:hover {
        background: #334155;
        background: var(--bg-dark-hover);
        color: #fff;
        color: var(--text-on-dark);
      }
.btn-link {
    background: transparent;
    color: #ec1c24;
    color: var(--text-primary);
    box-shadow: 0 0 rgba(0,0,0,0);
  }
.btn-link:hover {
      color: #f16222;
      color: var(--text-primary-hover);
    }
.btn-link:disabled:hover {
      background: transparent;
      color: #ec1c24;
      color: var(--text-primary);
    }
.btn-link.btn-icon {
      background: #eee2ce;
      background: var(--base-bg-lowest);
      border: 1px solid #f16222;
      border: 1px solid var(--border-primary-hover);
    }
.btn-link.btn-icon:hover {
        background: #fff;
        background: var(--base-bg-low);
      }
.card {
    background: #fff;
    background: var(--base-bg-low);
    color: #050707;
    color: var(--base-text);
    border: 1px solid #f6a081;
    border: 1px solid var(--base-border-secondary);
    border-radius: 8px;
    box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.10), 0px 1px 3px 0px rgba(0, 0, 0, 0.10);
    padding: 32px;
  }
.card h3 {
      font-size: 24px;
      font-weight: 700;
      line-height: 32px;
      margin-bottom: 16px;
    }
.card p {
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
    }
.card-cta-basic {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
.card-image {
    padding: 0px;
    overflow: hidden;
    width: 100%;
  }
.card-image > :last-child {
      padding: 24px;
    }
@media (min-width: 1024px) {
    .card.card-image {
      width: 50%;
    }
  }
.form-control {
    background: #fff;
    background: var(--base-bg-low);
    border: 1px solid #2883c4;
    border: 1px solid var(--base-border-primary);
    border-radius: 0;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    color: #374151;
    color: var(--base-text-secondary);
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 6px 12px;
    width: 100%;
  }
.form-control::-moz-placeholder {
      color: #6b7280;
      color: var(--base-text-tertiary);
    }
.form-control::placeholder {
      color: #6b7280;
      color: var(--base-text-tertiary);
    }
.form-control:focus,.form-control:focus-visible {
      box-shadow: inset 0 0 0 1px #f16222;
      box-shadow: inset 0 0 0 1px var(--border-primary-hover);
      border: 1px solid #f16222;
      border: 1px solid var(--border-primary-hover);
    }
.form-control.error {
      background: #fef2f2;
      background: var(--bg-danger-secondary);
      box-shadow: inset 0 0 0 1px #ef4444;
      box-shadow: inset 0 0 0 1px var(--border-danger);
      border: 1px solid #ef4444;
      border: 1px solid var(--border-danger);
      color: #b91c1c;
      color: var(--text-on-danger-secondary);
    }
.form-control.error:focus,.form-control.error:focus-visible {
        background: #fff;
        background: var(--base-bg-low);
      }
.form-control[disabled],.form-control[readonly] {
      background: #e2e8f0;
      background: var(--bg-disabled);
      border: 1px solid #cbd5e1;
      border: 1px solid var(--border-disabled);
      color: #6b7280;
      color: var(--base-text-tertiary);
      cursor: not-allowed;
    }
.form-control[data-controller="flatpickr"] {
      color: #374151;
      color: var(--base-text-secondary);
    }
.form-control[data-controller="flatpickr"]:-moz-read-only {
        background: #fff;
        background: var(--base-bg-low);
      }
.form-control[data-controller="flatpickr"]:read-only {
        background: #fff;
        background: var(--base-bg-low);
      }
.form-control[data-controller="flatpickr"]:-moz-read-only:focus, .form-control[data-controller="flatpickr"]:-moz-read-only:focus-visible {
          box-shadow: inset 0 0 0 1px #f16222;
          box-shadow: inset 0 0 0 1px var(--border-primary-hover);
          border: 1px solid #f16222;
          border: 1px solid var(--border-primary-hover);
        }
.form-control[data-controller="flatpickr"]:read-only:focus,.form-control[data-controller="flatpickr"]:read-only:focus-visible {
          box-shadow: inset 0 0 0 1px #f16222;
          box-shadow: inset 0 0 0 1px var(--border-primary-hover);
          border: 1px solid #f16222;
          border: 1px solid var(--border-primary-hover);
        }
.form-control[data-controller="flatpickr"]:-moz-read-only:disabled {
          background: #e2e8f0;
          background: var(--bg-disabled);
          border: 1px solid #cbd5e1;
          border: 1px solid var(--border-disabled);
          color: #6b7280;
          color: var(--base-text-tertiary);
          cursor: not-allowed;
        }
.form-control[data-controller="flatpickr"]:read-only:disabled {
          background: #e2e8f0;
          background: var(--bg-disabled);
          border: 1px solid #cbd5e1;
          border: 1px solid var(--border-disabled);
          color: #6b7280;
          color: var(--base-text-tertiary);
          cursor: not-allowed;
        }
.form-control.error[data-controller="flatpickr"]:-moz-read-only {
          background: #fef2f2;
          background: var(--bg-danger-secondary);
          box-shadow: inset 0 0 0 1px #ef4444;
          box-shadow: inset 0 0 0 1px var(--border-danger);
          border: 1px solid #ef4444;
          border: 1px solid var(--border-danger);
          color: #b91c1c;
          color: var(--text-on-danger-secondary);
        }
.form-control.error[data-controller="flatpickr"]:read-only {
          background: #fef2f2;
          background: var(--bg-danger-secondary);
          box-shadow: inset 0 0 0 1px #ef4444;
          box-shadow: inset 0 0 0 1px var(--border-danger);
          border: 1px solid #ef4444;
          border: 1px solid var(--border-danger);
          color: #b91c1c;
          color: var(--text-on-danger-secondary);
        }
.form-control.error[data-controller="flatpickr"]:-moz-read-only:focus, .form-control.error[data-controller="flatpickr"]:-moz-read-only:focus-visible {
            background: #fff;
            background: var(--base-bg-low);
          }
.form-control.error[data-controller="flatpickr"]:read-only:focus,.form-control.error[data-controller="flatpickr"]:read-only:focus-visible {
            background: #fff;
            background: var(--base-bg-low);
          }
.pill {
    font-family: Inter;
    border-radius: 9999px;
    padding: 4px 16px;
    font-size: 12px;
    font-weight: 700;
    font-style: normal;
    line-height: 16px;
    text-transform: uppercase;
    background: #eee2ce;
    background: var(--base-bg-highest);
    color: #374151;
    color: var(--base-text-secondary);
    display: inline-flex;
    gap: 8px;
    align-items: flex-start;
  }
.pill-outline {
    background: transparent;
    border: 1px solid #f6a081;
    border: 1px solid var(--base-border-secondary);
    color: #374151;
    color: var(--base-text-secondary);
  }
.pill-primary {
    background: #f16222;
    background: var(--bg-primary-hover);
    color: #fff;
    color: var(--text-on-primary);
  }
.pill-primary.pill-outline {
      background: transparent;
      border: 1px solid #f16222;
      border: 1px solid var(--border-primary-hover);
      color: #f16222;
      color: var(--text-primary-hover);
    }
.pill-secondary {
    background: #15803d;
    background: var(--bg-success-hover);
    color: #fff;
    color: var(--text-on-success);
  }
.pill-secondary.pill-outline {
      background: transparent;
      border: 1px solid #22c55e;
      border: 1px solid var(--border-success-focus);
      color: #22c55e;
      color: var(--border-success-focus);
    }
.pill-tertiary {
    background: #64748b;
    background: var(--bg-dark-secondary); 
    color: #fff; 
    color: var(--text-on-dark);
  }
.pill-tertiary.pill-outline {
      background: transparent;
      border: 1px solid #6b7280;
      border: 1px solid var(--base-text-tertiary); 
      color: #6b7280; 
      color: var(--base-text-tertiary); 
    }
.pill-accent {
    background: #2883c4;
    background: var(--bg-accent);
    color: #fff;
    color: var(--text-on-accent);
  }
.pill-accent.pill-outline {
      background: transparent;
      border: 1px solid #2883c4;
      border: 1px solid var(--border-accent);
      color: #2883c4;
      color: var(--text-accent);
    }
#toasts {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: fixed;
    right: 16px;
    top: 48px;
    z-index: 30;
    width: 100%;
    max-width: 384px;
  }
#toasts  > * + * {
      margin-top: 16px;
    }
@media (max-width:640px) {
    #toasts {
      left: 50%;
      transform: translateX(-50%);
    }
  }
.toast {
    background: #fff;
    background: var(--base-bg-low);
    border-radius: 4px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.10), 0px 4px 6px -4px rgba(0, 0, 0, 0.10);
    display: flex;
    justify-content: space-between;
    padding: 16px;
    width: 100%;
    max-width: 384px;
  }
.toast section:has( > header > svg) p {
      margin-left: 28px;
    }
.toast section header {
      align-items: center;
      display: flex;
      flex-grow: 1;
      gap: 8px;
    }
.toast section header h2 {
        color: #050707;
        color: var(--base-text);
        font-size: 14px;
        font-weight: 600;
        line-height: 20px;
      }
.toast p {
      color: #374151;
      color: var(--base-text-secondary);
      font-size: 14px;
      font-weight: 400;
      line-height: 20px;
    }
.toast div {
      align-items: flex-start;
      display: flex;
      gap: 16px;
    }
.toast div a {
        color: #ec1c24;
        color: var(--text-primary);
        font-size: 14px;
        font-weight: 600;
        line-height: 20px;
      }
.toast div a:hover {
          color: #f16222;
          color: var(--text-primary-hover);
        }
.toast div button svg path {
          fill: #2883c4;
          fill: var(--base-icon);
        }
.toast div button:hover svg path {
            fill: #374151;
            fill: var(--base-text-secondary);
          }
.well {
    background: #eee2ce;
    background: var(--base-bg-high);
    color: #050707;
    color: var(--base-text);
    padding: 32px;
    font-family: Inter;
    font-style: normal;
    text-align: center;
    border-radius: 8px;
    max-width: 768px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
.well h2 {
      font-size: 20px;
      font-weight: 700;
      line-height: 28px;
    }
.well p {
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
    }
.well a {
      color: #ec1c24;
      color: var(--text-primary);
      font-size: 14px;
      font-weight: 600;
      line-height: 24px;
    }
.well-lg {
    padding: 64px;
    gap: 16px;
  }
.well-lg h2 {
      font-size: 36px;
      line-height: 40px;
    }
.well-lg p {
      font-size: 20px;
      line-height: 28px;
    }
.well-lg a {
      font-size: 18px;
      line-height: 28px;
    }
.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;
}
.pointer-events-none{
  pointer-events: none;
}
.pointer-events-auto{
  pointer-events: auto;
}
.visible{
  visibility: visible;
}
.static{
  position: static;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.sticky{
  position: sticky;
}
.inset-0{
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}
.inset-x-0{
  left: 0px;
  right: 0px;
}
.inset-y-0{
  top: 0px;
  bottom: 0px;
}
.bottom-0{
  bottom: 0px;
}
.bottom-4{
  bottom: 1rem;
}
.bottom-full{
  bottom: 100%;
}
.left-0{
  left: 0px;
}
.left-1\/2{
  left: 50%;
}
.left-2{
  left: 0.5rem;
}
.left-4{
  left: 1rem;
}
.left-full{
  left: 100%;
}
.right-0{
  right: 0px;
}
.right-4{
  right: 1rem;
}
.top-0{
  top: 0px;
}
.top-1\/2{
  top: 50%;
}
.top-12{
  top: 3rem;
}
.top-20{
  top: 5rem;
}
.top-4{
  top: 1rem;
}
.top-full{
  top: 100%;
}
.z-10{
  z-index: 10;
}
.z-20{
  z-index: 20;
}
.z-30{
  z-index: 30;
}
.z-40{
  z-index: 40;
}
.z-50{
  z-index: 50;
}
.z-\[100\]{
  z-index: 100;
}
.z-\[199\]{
  z-index: 199;
}
.z-\[200\]{
  z-index: 200;
}
.z-\[99999999\]{
  z-index: 99999999;
}
.z-\[99999\]{
  z-index: 99999;
}
.z-\[9999\]{
  z-index: 9999;
}
.order-3{
  order: 3;
}
.col-span-1{
  grid-column: span 1 / span 1;
}
.col-span-2{
  grid-column: span 2 / span 2;
}
.col-span-3{
  grid-column: span 3 / span 3;
}
.col-span-6{
  grid-column: span 6 / span 6;
}
.m-0{
  margin: 0px;
}
.m-1{
  margin: 0.25rem;
}
.m-4{
  margin: 1rem;
}
.m-8{
  margin: 2rem;
}
.m-auto{
  margin: auto;
}
.-mx-2{
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.-mx-4{
  margin-left: -1rem;
  margin-right: -1rem;
}
.mx-1{
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.mx-4{
  margin-left: 1rem;
  margin-right: 1rem;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.my-10{
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.my-12{
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.my-2{
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-24{
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.my-3{
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.my-4{
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-6{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.my-8{
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.-mb-px{
  margin-bottom: -1px;
}
.-ml-1{
  margin-left: -0.25rem;
}
.-mr-1{
  margin-right: -0.25rem;
}
.mb-0{
  margin-bottom: 0px;
}
.mb-1{
  margin-bottom: 0.25rem;
}
.mb-10{
  margin-bottom: 2.5rem;
}
.mb-2{
  margin-bottom: 0.5rem;
}
.mb-24{
  margin-bottom: 6rem;
}
.mb-3{
  margin-bottom: 0.75rem;
}
.mb-4{
  margin-bottom: 1rem;
}
.mb-5{
  margin-bottom: 1.25rem;
}
.mb-6{
  margin-bottom: 1.5rem;
}
.mb-8{
  margin-bottom: 2rem;
}
.ml-1{
  margin-left: 0.25rem;
}
.ml-2{
  margin-left: 0.5rem;
}
.ml-3{
  margin-left: 0.75rem;
}
.ml-4{
  margin-left: 1rem;
}
.ml-9{
  margin-left: 2.25rem;
}
.ml-auto{
  margin-left: auto;
}
.mr-1{
  margin-right: 0.25rem;
}
.mr-2{
  margin-right: 0.5rem;
}
.mr-3{
  margin-right: 0.75rem;
}
.mr-4{
  margin-right: 1rem;
}
.mt-0{
  margin-top: 0px;
}
.mt-0\.5{
  margin-top: 0.125rem;
}
.mt-1{
  margin-top: 0.25rem;
}
.mt-10{
  margin-top: 2.5rem;
}
.mt-12{
  margin-top: 3rem;
}
.mt-16{
  margin-top: 4rem;
}
.mt-2{
  margin-top: 0.5rem;
}
.mt-3{
  margin-top: 0.75rem;
}
.mt-4{
  margin-top: 1rem;
}
.mt-5{
  margin-top: 1.25rem;
}
.mt-6{
  margin-top: 1.5rem;
}
.mt-8{
  margin-top: 2rem;
}
.mt-auto{
  margin-top: auto;
}
.block{
  display: block;
}
.inline-block{
  display: inline-block;
}
.inline{
  display: inline;
}
.flex{
  display: flex;
}
.inline-flex{
  display: inline-flex;
}
.table{
  display: table;
}
.grid{
  display: grid;
}
.contents{
  display: contents;
}
.hidden{
  display: none;
}
.size-5{
  width: 1.25rem;
  height: 1.25rem;
}
.size-6{
  width: 1.5rem;
  height: 1.5rem;
}
.h-0{
  height: 0px;
}
.h-1{
  height: 0.25rem;
}
.h-10{
  height: 2.5rem;
}
.h-12{
  height: 3rem;
}
.h-16{
  height: 4rem;
}
.h-2{
  height: 0.5rem;
}
.h-20{
  height: 5rem;
}
.h-24{
  height: 6rem;
}
.h-3{
  height: 0.75rem;
}
.h-3\.5{
  height: 0.875rem;
}
.h-32{
  height: 8rem;
}
.h-4{
  height: 1rem;
}
.h-5{
  height: 1.25rem;
}
.h-6{
  height: 1.5rem;
}
.h-8{
  height: 2rem;
}
.h-96{
  height: 24rem;
}
.h-\[90vh\]{
  height: 90vh;
}
.h-dvh{
  height: 100dvh;
}
.h-full{
  height: 100%;
}
.max-h-40{
  max-height: 10rem;
}
.max-h-48{
  max-height: 12rem;
}
.max-h-64{
  max-height: 16rem;
}
.max-h-96{
  max-height: 24rem;
}
.max-h-\[80vh\]{
  max-height: 80vh;
}
.max-h-\[90vh\]{
  max-height: 90vh;
}
.max-h-dvh{
  max-height: 100dvh;
}
.max-h-full{
  max-height: 100%;
}
.min-h-\[400px\]{
  min-height: 400px;
}
.min-h-\[80px\]{
  min-height: 80px;
}
.min-h-screen{
  min-height: 100vh;
}
.w-0{
  width: 0px;
}
.w-1\/12{
  width: 8.333333%;
}
.w-1\/2{
  width: 50%;
}
.w-1\/3{
  width: 33.333333%;
}
.w-1\/5{
  width: 20%;
}
.w-1\/6{
  width: 16.666667%;
}
.w-10{
  width: 2.5rem;
}
.w-11\/12{
  width: 91.666667%;
}
.w-12{
  width: 3rem;
}
.w-16{
  width: 4rem;
}
.w-2{
  width: 0.5rem;
}
.w-2\/5{
  width: 40%;
}
.w-20{
  width: 5rem;
}
.w-24{
  width: 6rem;
}
.w-3{
  width: 0.75rem;
}
.w-3\.5{
  width: 0.875rem;
}
.w-32{
  width: 8rem;
}
.w-36{
  width: 9rem;
}
.w-4{
  width: 1rem;
}
.w-40{
  width: 10rem;
}
.w-48{
  width: 12rem;
}
.w-5{
  width: 1.25rem;
}
.w-6{
  width: 1.5rem;
}
.w-64{
  width: 16rem;
}
.w-72{
  width: 18rem;
}
.w-8{
  width: 2rem;
}
.w-80{
  width: 20rem;
}
.w-96{
  width: 24rem;
}
.w-auto{
  width: auto;
}
.w-full{
  width: 100%;
}
.min-w-0{
  min-width: 0px;
}
.min-w-48{
  min-width: 12rem;
}
.min-w-\[280px\]{
  min-width: 280px;
}
.min-w-full{
  min-width: 100%;
}
.max-w-2xl{
  max-width: 42rem;
}
.max-w-3xl{
  max-width: 48rem;
}
.max-w-4xl{
  max-width: 56rem;
}
.max-w-6xl{
  max-width: 72rem;
}
.max-w-7xl{
  max-width: 80rem;
}
.max-w-\[320px\]{
  max-width: 320px;
}
.max-w-\[384px\]{
  max-width: 384px;
}
.max-w-full{
  max-width: 100%;
}
.max-w-lg{
  max-width: 32rem;
}
.max-w-md{
  max-width: 28rem;
}
.max-w-none{
  max-width: none;
}
.max-w-screen-xl{
  max-width: 1280px;
}
.max-w-sm{
  max-width: 24rem;
}
.max-w-xl{
  max-width: 36rem;
}
.max-w-xs{
  max-width: 20rem;
}
.flex-1{
  flex: 1 1 0%;
}
.flex-shrink{
  flex-shrink: 1;
}
.flex-shrink-0{
  flex-shrink: 0;
}
.shrink-0{
  flex-shrink: 0;
}
.flex-grow{
  flex-grow: 1;
}
.basis-1\/4{
  flex-basis: 25%;
}
.table-fixed{
  table-layout: fixed;
}
.-translate-x-1\/2{
  --tw-translate-x: -50%;
  transform: translate(-50%, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2{
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), -50%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-1\/2{
  --tw-translate-x: 50%;
  transform: translate(50%, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-0{
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), 0px) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-1{
  --tw-translate-y: 0.25rem;
  transform: translate(var(--tw-translate-x), 0.25rem) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-180{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(180deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-90{
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(90deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-95{
  --tw-scale-x: .95;
  --tw-scale-y: .95;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(.95) scaleY(.95);
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes spin{
  to{
    transform: rotate(360deg);
  }
}
.animate-spin{
  animation: spin 1s linear infinite;
}
.cursor-help{
  cursor: help;
}
.cursor-not-allowed{
  cursor: not-allowed;
}
.cursor-pointer{
  cursor: pointer;
}
.cursor-wait{
  cursor: wait;
}
.select-none{
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.select-all{
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
}
.resize-y{
  resize: vertical;
}
.resize{
  resize: both;
}
.list-inside{
  list-style-position: inside;
}
.list-decimal{
  list-style-type: decimal;
}
.list-disc{
  list-style-type: disc;
}
.list-none{
  list-style-type: none;
}
.appearance-none{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-12{
  grid-template-columns: repeat(12, 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-6{
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-cols-7{
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.flex-col{
  flex-direction: column;
}
.flex-wrap{
  flex-wrap: wrap;
}
.flex-nowrap{
  flex-wrap: nowrap;
}
.items-start{
  align-items: flex-start;
}
.items-end{
  align-items: flex-end;
}
.items-center{
  align-items: center;
}
.items-baseline{
  align-items: baseline;
}
.items-stretch{
  align-items: stretch;
}
.justify-start{
  justify-content: flex-start;
}
.justify-end{
  justify-content: flex-end;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.gap-1{
  gap: 0.25rem;
}
.gap-1\.5{
  gap: 0.375rem;
}
.gap-10{
  gap: 2.5rem;
}
.gap-2{
  gap: 0.5rem;
}
.gap-3{
  gap: 0.75rem;
}
.gap-4{
  gap: 1rem;
}
.gap-5{
  gap: 1.25rem;
}
.gap-6{
  gap: 1.5rem;
}
.gap-8{
  gap: 2rem;
}
.gap-x-4{
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.gap-y-2{
  row-gap: 0.5rem;
}
.gap-y-3{
  row-gap: 0.75rem;
}
.gap-y-6{
  row-gap: 1.5rem;
}
.space-x-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * 0);
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * (1 - 0));
  margin-left: calc(0.5rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(0.5rem * calc(1 - 0));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.75rem * 0);
  margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(0.75rem * (1 - 0));
  margin-left: calc(0.75rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(0.75rem * calc(1 - 0));
  margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * 0);
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * (1 - 0));
  margin-left: calc(1rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(1rem * calc(1 - 0));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(2rem * 0);
  margin-right: calc(2rem * var(--tw-space-x-reverse));
  margin-left: calc(2rem * (1 - 0));
  margin-left: calc(2rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(2rem * calc(1 - 0));
  margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.125rem * (1 - 0));
  margin-top: calc(0.125rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(0.125rem * calc(1 - 0));
  margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.125rem * 0);
  margin-bottom: calc(0.125rem * var(--tw-space-y-reverse));
}
.space-y-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * (1 - 0));
  margin-top: calc(0.25rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(0.25rem * calc(1 - 0));
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * 0);
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-10 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(2.5rem * (1 - 0));
  margin-top: calc(2.5rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(2.5rem * calc(1 - 0));
  margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2.5rem * 0);
  margin-bottom: calc(2.5rem * var(--tw-space-y-reverse));
}
.space-y-12 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(3rem * (1 - 0));
  margin-top: calc(3rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(3rem * calc(1 - 0));
  margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(3rem * 0);
  margin-bottom: calc(3rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * (1 - 0));
  margin-top: calc(0.5rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(0.5rem * calc(1 - 0));
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * 0);
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * (1 - 0));
  margin-top: calc(0.75rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(0.75rem * calc(1 - 0));
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * 0);
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * (1 - 0));
  margin-top: calc(1rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(1rem * calc(1 - 0));
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * 0);
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.25rem * (1 - 0));
  margin-top: calc(1.25rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(1.25rem * calc(1 - 0));
  margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.25rem * 0);
  margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * (1 - 0));
  margin-top: calc(1.5rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(1.5rem * calc(1 - 0));
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * 0);
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * (1 - 0));
  margin-top: calc(2rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(2rem * calc(1 - 0));
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * 0);
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.divide-y > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * (1 - 0));
  border-top-width: calc(1px * (1 - var(--tw-divide-y-reverse)));
  border-top-width: calc(1px * calc(1 - 0));
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * 0);
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
.divide-gray-100 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(243, 244, 246, 1);
  border-color: rgba(243, 244, 246, var(--tw-divide-opacity, 1));
}
.divide-gray-200 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(229, 231, 235, 1);
  border-color: rgba(229, 231, 235, var(--tw-divide-opacity, 1));
}
.divide-gray-300 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(209, 213, 219, 1);
  border-color: rgba(209, 213, 219, var(--tw-divide-opacity, 1));
}
.self-center{
  align-self: center;
}
.overflow-auto{
  overflow: auto;
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-visible{
  overflow: visible;
}
.overflow-x-auto{
  overflow-x: auto;
}
.overflow-y-auto{
  overflow-y: auto;
}
.overflow-x-hidden{
  overflow-x: hidden;
}
.truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-ellipsis{
  text-overflow: ellipsis;
}
.whitespace-normal{
  white-space: normal;
}
.whitespace-nowrap{
  white-space: nowrap;
}
.whitespace-pre-line{
  white-space: pre-line;
}
.whitespace-pre-wrap{
  white-space: pre-wrap;
}
.break-words{
  word-wrap: break-word;
}
.rounded{
  border-radius: 0.25rem;
}
.rounded-3xl{
  border-radius: 1.5rem;
}
.rounded-full{
  border-radius: 9999px;
}
.rounded-lg{
  border-radius: 0.5rem;
}
.rounded-md{
  border-radius: 0.375rem;
}
.rounded-none{
  border-radius: 0px;
}
.rounded-sm{
  border-radius: 0.125rem;
}
.rounded-xl{
  border-radius: 0.75rem;
}
.rounded-b{
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.rounded-b-lg{
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.rounded-t{
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.rounded-t-lg{
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.border{
  border-width: 1px;
}
.border-0{
  border-width: 0px;
}
.border-2{
  border-width: 2px;
}
.border-b{
  border-bottom-width: 1px;
}
.border-b-2{
  border-bottom-width: 2px;
}
.border-b-4{
  border-bottom-width: 4px;
}
.border-l{
  border-left-width: 1px;
}
.border-l-4{
  border-left-width: 4px;
}
.border-r{
  border-right-width: 1px;
}
.border-r-4{
  border-right-width: 4px;
}
.border-t{
  border-top-width: 1px;
}
.border-t-2{
  border-top-width: 2px;
}
.border-t-4{
  border-top-width: 4px;
}
.border-dashed{
  border-style: dashed;
}
.border-blue-200{
  --tw-border-opacity: 1;
  border-color: rgba(191, 219, 254, 1);
  border-color: rgba(191, 219, 254, var(--tw-border-opacity, 1));
}
.border-blue-300{
  --tw-border-opacity: 1;
  border-color: rgba(147, 197, 253, 1);
  border-color: rgba(147, 197, 253, var(--tw-border-opacity, 1));
}
.border-blue-600{
  --tw-border-opacity: 1;
  border-color: rgba(37, 99, 235, 1);
  border-color: rgba(37, 99, 235, var(--tw-border-opacity, 1));
}
.border-gray-100{
  --tw-border-opacity: 1;
  border-color: rgba(243, 244, 246, 1);
  border-color: rgba(243, 244, 246, var(--tw-border-opacity, 1));
}
.border-gray-200{
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, 1);
  border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
}
.border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgba(209, 213, 219, 1);
  border-color: rgba(209, 213, 219, var(--tw-border-opacity, 1));
}
.border-gray-400{
  --tw-border-opacity: 1;
  border-color: rgba(156, 163, 175, 1);
  border-color: rgba(156, 163, 175, var(--tw-border-opacity, 1));
}
.border-gray-700{
  --tw-border-opacity: 1;
  border-color: rgba(55, 65, 81, 1);
  border-color: rgba(55, 65, 81, var(--tw-border-opacity, 1));
}
.border-gray-900{
  --tw-border-opacity: 1;
  border-color: rgba(17, 24, 39, 1);
  border-color: rgba(17, 24, 39, var(--tw-border-opacity, 1));
}
.border-green-200{
  --tw-border-opacity: 1;
  border-color: rgba(187, 247, 208, 1);
  border-color: rgba(187, 247, 208, var(--tw-border-opacity, 1));
}
.border-green-400{
  --tw-border-opacity: 1;
  border-color: rgba(74, 222, 128, 1);
  border-color: rgba(74, 222, 128, var(--tw-border-opacity, 1));
}
.border-orange-200{
  --tw-border-opacity: 1;
  border-color: rgba(254, 215, 170, 1);
  border-color: rgba(254, 215, 170, var(--tw-border-opacity, 1));
}
.border-orange-500{
  --tw-border-opacity: 1;
  border-color: rgba(249, 115, 22, 1);
  border-color: rgba(249, 115, 22, var(--tw-border-opacity, 1));
}
.border-pink-200{
  --tw-border-opacity: 1;
  border-color: rgba(251, 207, 232, 1);
  border-color: rgba(251, 207, 232, var(--tw-border-opacity, 1));
}
.border-primary-500{
  --tw-border-opacity: 1;
  border-color: rgba(239, 68, 68, 1);
  border-color: rgba(239, 68, 68, var(--tw-border-opacity, 1));
}
.border-purple-200{
  --tw-border-opacity: 1;
  border-color: rgba(233, 213, 255, 1);
  border-color: rgba(233, 213, 255, var(--tw-border-opacity, 1));
}
.border-purple-300{
  --tw-border-opacity: 1;
  border-color: rgba(216, 180, 254, 1);
  border-color: rgba(216, 180, 254, var(--tw-border-opacity, 1));
}
.border-red-100{
  --tw-border-opacity: 1;
  border-color: rgba(254, 226, 226, 1);
  border-color: rgba(254, 226, 226, var(--tw-border-opacity, 1));
}
.border-red-200{
  --tw-border-opacity: 1;
  border-color: rgba(254, 202, 202, 1);
  border-color: rgba(254, 202, 202, var(--tw-border-opacity, 1));
}
.border-red-300{
  --tw-border-opacity: 1;
  border-color: rgba(252, 165, 165, 1);
  border-color: rgba(252, 165, 165, var(--tw-border-opacity, 1));
}
.border-red-500{
  --tw-border-opacity: 1;
  border-color: rgba(239, 68, 68, 1);
  border-color: rgba(239, 68, 68, var(--tw-border-opacity, 1));
}
.border-red-600{
  --tw-border-opacity: 1;
  border-color: rgba(220, 38, 38, 1);
  border-color: rgba(220, 38, 38, var(--tw-border-opacity, 1));
}
.border-rose-200{
  --tw-border-opacity: 1;
  border-color: rgba(254, 205, 211, 1);
  border-color: rgba(254, 205, 211, var(--tw-border-opacity, 1));
}
.border-slate-200{
  --tw-border-opacity: 1;
  border-color: rgba(226, 232, 240, 1);
  border-color: rgba(226, 232, 240, var(--tw-border-opacity, 1));
}
.border-slate-300{
  --tw-border-opacity: 1;
  border-color: rgba(203, 213, 225, 1);
  border-color: rgba(203, 213, 225, var(--tw-border-opacity, 1));
}
.border-transparent{
  border-color: transparent;
}
.border-yellow-200{
  --tw-border-opacity: 1;
  border-color: rgba(254, 240, 138, 1);
  border-color: rgba(254, 240, 138, var(--tw-border-opacity, 1));
}
.border-b-gray-900{
  --tw-border-opacity: 1;
  border-bottom-color: rgba(17, 24, 39, 1);
  border-bottom-color: rgba(17, 24, 39, var(--tw-border-opacity, 1));
}
.border-l-avocado-200{
  --tw-border-opacity: 1;
  border-left-color: rgba(241, 250, 183, 1);
  border-left-color: rgba(241, 250, 183, var(--tw-border-opacity, 1));
}
.border-t-gray-900{
  --tw-border-opacity: 1;
  border-top-color: rgba(17, 24, 39, 1);
  border-top-color: rgba(17, 24, 39, var(--tw-border-opacity, 1));
}
.\!bg-red-600{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(220, 38, 38, 1) !important;
  background-color: rgba(220, 38, 38, var(--tw-bg-opacity, 1)) !important;
}
.bg-black{
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, 1);
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity, 1));
}
.bg-blue-100{
  --tw-bg-opacity: 1;
  background-color: rgba(219, 234, 254, 1);
  background-color: rgba(219, 234, 254, var(--tw-bg-opacity, 1));
}
.bg-blue-400{
  --tw-bg-opacity: 1;
  background-color: rgba(96, 165, 250, 1);
  background-color: rgba(96, 165, 250, var(--tw-bg-opacity, 1));
}
.bg-blue-50{
  --tw-bg-opacity: 1;
  background-color: rgba(239, 246, 255, 1);
  background-color: rgba(239, 246, 255, var(--tw-bg-opacity, 1));
}
.bg-blue-500{
  --tw-bg-opacity: 1;
  background-color: rgba(59, 130, 246, 1);
  background-color: rgba(59, 130, 246, var(--tw-bg-opacity, 1));
}
.bg-blue-600{
  --tw-bg-opacity: 1;
  background-color: rgba(37, 99, 235, 1);
  background-color: rgba(37, 99, 235, var(--tw-bg-opacity, 1));
}
.bg-cyan-100{
  --tw-bg-opacity: 1;
  background-color: rgba(207, 250, 254, 1);
  background-color: rgba(207, 250, 254, var(--tw-bg-opacity, 1));
}
.bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, 1);
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity, 1));
}
.bg-gray-200{
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, 1);
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity, 1));
}
.bg-gray-300{
  --tw-bg-opacity: 1;
  background-color: rgba(209, 213, 219, 1);
  background-color: rgba(209, 213, 219, var(--tw-bg-opacity, 1));
}
.bg-gray-400{
  --tw-bg-opacity: 1;
  background-color: rgba(156, 163, 175, 1);
  background-color: rgba(156, 163, 175, var(--tw-bg-opacity, 1));
}
.bg-gray-50{
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, 1);
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity, 1));
}
.bg-gray-500{
  --tw-bg-opacity: 1;
  background-color: rgba(107, 114, 128, 1);
  background-color: rgba(107, 114, 128, var(--tw-bg-opacity, 1));
}
.bg-gray-600{
  --tw-bg-opacity: 1;
  background-color: rgba(75, 85, 99, 1);
  background-color: rgba(75, 85, 99, var(--tw-bg-opacity, 1));
}
.bg-gray-700{
  --tw-bg-opacity: 1;
  background-color: rgba(55, 65, 81, 1);
  background-color: rgba(55, 65, 81, var(--tw-bg-opacity, 1));
}
.bg-gray-900{
  --tw-bg-opacity: 1;
  background-color: rgba(17, 24, 39, 1);
  background-color: rgba(17, 24, 39, var(--tw-bg-opacity, 1));
}
.bg-green-100{
  --tw-bg-opacity: 1;
  background-color: rgba(220, 252, 231, 1);
  background-color: rgba(220, 252, 231, var(--tw-bg-opacity, 1));
}
.bg-green-400{
  --tw-bg-opacity: 1;
  background-color: rgba(74, 222, 128, 1);
  background-color: rgba(74, 222, 128, var(--tw-bg-opacity, 1));
}
.bg-green-50{
  --tw-bg-opacity: 1;
  background-color: rgba(240, 253, 244, 1);
  background-color: rgba(240, 253, 244, var(--tw-bg-opacity, 1));
}
.bg-green-500{
  --tw-bg-opacity: 1;
  background-color: rgba(34, 197, 94, 1);
  background-color: rgba(34, 197, 94, var(--tw-bg-opacity, 1));
}
.bg-green-600{
  --tw-bg-opacity: 1;
  background-color: rgba(22, 163, 74, 1);
  background-color: rgba(22, 163, 74, var(--tw-bg-opacity, 1));
}
.bg-indigo-100{
  --tw-bg-opacity: 1;
  background-color: rgba(224, 231, 255, 1);
  background-color: rgba(224, 231, 255, var(--tw-bg-opacity, 1));
}
.bg-indigo-400{
  --tw-bg-opacity: 1;
  background-color: rgba(129, 140, 248, 1);
  background-color: rgba(129, 140, 248, var(--tw-bg-opacity, 1));
}
.bg-indigo-600{
  --tw-bg-opacity: 1;
  background-color: rgba(79, 70, 229, 1);
  background-color: rgba(79, 70, 229, var(--tw-bg-opacity, 1));
}
.bg-indigo-800{
  --tw-bg-opacity: 1;
  background-color: rgba(55, 48, 163, 1);
  background-color: rgba(55, 48, 163, var(--tw-bg-opacity, 1));
}
.bg-orange-100{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 237, 213, 1);
  background-color: rgba(255, 237, 213, var(--tw-bg-opacity, 1));
}
.bg-orange-50{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 247, 237, 1);
  background-color: rgba(255, 247, 237, var(--tw-bg-opacity, 1));
}
.bg-orange-500{
  --tw-bg-opacity: 1;
  background-color: rgba(249, 115, 22, 1);
  background-color: rgba(249, 115, 22, var(--tw-bg-opacity, 1));
}
.bg-orange-600{
  --tw-bg-opacity: 1;
  background-color: rgba(234, 88, 12, 1);
  background-color: rgba(234, 88, 12, var(--tw-bg-opacity, 1));
}
.bg-pink-100{
  --tw-bg-opacity: 1;
  background-color: rgba(252, 231, 243, 1);
  background-color: rgba(252, 231, 243, var(--tw-bg-opacity, 1));
}
.bg-primary-500{
  --tw-bg-opacity: 1;
  background-color: rgba(239, 68, 68, 1);
  background-color: rgba(239, 68, 68, var(--tw-bg-opacity, 1));
}
.bg-primary-600{
  --tw-bg-opacity: 1;
  background-color: rgba(220, 38, 38, 1);
  background-color: rgba(220, 38, 38, var(--tw-bg-opacity, 1));
}
.bg-purple-100{
  --tw-bg-opacity: 1;
  background-color: rgba(243, 232, 255, 1);
  background-color: rgba(243, 232, 255, var(--tw-bg-opacity, 1));
}
.bg-purple-50{
  --tw-bg-opacity: 1;
  background-color: rgba(250, 245, 255, 1);
  background-color: rgba(250, 245, 255, var(--tw-bg-opacity, 1));
}
.bg-purple-500{
  --tw-bg-opacity: 1;
  background-color: rgba(168, 85, 247, 1);
  background-color: rgba(168, 85, 247, var(--tw-bg-opacity, 1));
}
.bg-purple-600{
  --tw-bg-opacity: 1;
  background-color: rgba(147, 51, 234, 1);
  background-color: rgba(147, 51, 234, var(--tw-bg-opacity, 1));
}
.bg-red-100{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 226, 226, 1);
  background-color: rgba(254, 226, 226, var(--tw-bg-opacity, 1));
}
.bg-red-400{
  --tw-bg-opacity: 1;
  background-color: rgba(248, 113, 113, 1);
  background-color: rgba(248, 113, 113, var(--tw-bg-opacity, 1));
}
.bg-red-50{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 242, 242, 1);
  background-color: rgba(254, 242, 242, var(--tw-bg-opacity, 1));
}
.bg-red-500{
  --tw-bg-opacity: 1;
  background-color: rgba(239, 68, 68, 1);
  background-color: rgba(239, 68, 68, var(--tw-bg-opacity, 1));
}
.bg-red-600{
  --tw-bg-opacity: 1;
  background-color: rgba(220, 38, 38, 1);
  background-color: rgba(220, 38, 38, var(--tw-bg-opacity, 1));
}
.bg-rose-100{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 228, 230, 1);
  background-color: rgba(255, 228, 230, var(--tw-bg-opacity, 1));
}
.bg-slate-100{
  --tw-bg-opacity: 1;
  background-color: rgba(241, 245, 249, 1);
  background-color: rgba(241, 245, 249, var(--tw-bg-opacity, 1));
}
.bg-slate-200{
  --tw-bg-opacity: 1;
  background-color: rgba(226, 232, 240, 1);
  background-color: rgba(226, 232, 240, var(--tw-bg-opacity, 1));
}
.bg-slate-900{
  --tw-bg-opacity: 1;
  background-color: rgba(15, 23, 42, 1);
  background-color: rgba(15, 23, 42, var(--tw-bg-opacity, 1));
}
.bg-teal-100{
  --tw-bg-opacity: 1;
  background-color: rgba(204, 251, 241, 1);
  background-color: rgba(204, 251, 241, var(--tw-bg-opacity, 1));
}
.bg-transparent{
  background-color: transparent;
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
}
.bg-yellow-100{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 249, 195, 1);
  background-color: rgba(254, 249, 195, var(--tw-bg-opacity, 1));
}
.bg-yellow-400{
  --tw-bg-opacity: 1;
  background-color: rgba(250, 204, 21, 1);
  background-color: rgba(250, 204, 21, var(--tw-bg-opacity, 1));
}
.bg-yellow-50{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 252, 232, 1);
  background-color: rgba(254, 252, 232, var(--tw-bg-opacity, 1));
}
.bg-yellow-500{
  --tw-bg-opacity: 1;
  background-color: rgba(234, 179, 8, 1);
  background-color: rgba(234, 179, 8, var(--tw-bg-opacity, 1));
}
.bg-opacity-30{
  --tw-bg-opacity: 0.3;
}
.bg-opacity-50{
  --tw-bg-opacity: 0.5;
}
.bg-opacity-75{
  --tw-bg-opacity: 0.75;
}
.bg-gradient-to-br{
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.from-slate-900{
  --tw-gradient-from: #0f172a var(--tw-gradient-from-position);
  --tw-gradient-to: rgba(15, 23, 42, 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-slate-800{
  --tw-gradient-to: rgba(30, 41, 59, 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #1e293b var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.to-slate-900{
  --tw-gradient-to: #0f172a var(--tw-gradient-to-position);
}
.bg-cover{
  background-size: cover;
}
.bg-no-repeat{
  background-repeat: no-repeat;
}
.fill-current{
  fill: currentColor;
}
.object-contain{
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}
.p-1{
  padding: 0.25rem;
}
.p-12{
  padding: 3rem;
}
.p-2{
  padding: 0.5rem;
}
.p-3{
  padding: 0.75rem;
}
.p-4{
  padding: 1rem;
}
.p-5{
  padding: 1.25rem;
}
.p-6{
  padding: 1.5rem;
}
.p-8{
  padding: 2rem;
}
.px-1{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-10{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-2\.5{
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-0\.5{
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-10{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-12{
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16{
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2\.5{
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-20{
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8{
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pb-0{
  padding-bottom: 0px;
}
.pb-1{
  padding-bottom: 0.25rem;
}
.pb-2{
  padding-bottom: 0.5rem;
}
.pb-20{
  padding-bottom: 5rem;
}
.pb-3{
  padding-bottom: 0.75rem;
}
.pb-4{
  padding-bottom: 1rem;
}
.pb-6{
  padding-bottom: 1.5rem;
}
.pb-8{
  padding-bottom: 2rem;
}
.pl-0{
  padding-left: 0px;
}
.pl-10{
  padding-left: 2.5rem;
}
.pl-2{
  padding-left: 0.5rem;
}
.pl-3{
  padding-left: 0.75rem;
}
.pl-4{
  padding-left: 1rem;
}
.pl-5{
  padding-left: 1.25rem;
}
.pl-6{
  padding-left: 1.5rem;
}
.pl-7{
  padding-left: 1.75rem;
}
.pr-10{
  padding-right: 2.5rem;
}
.pr-12{
  padding-right: 3rem;
}
.pr-2{
  padding-right: 0.5rem;
}
.pr-3{
  padding-right: 0.75rem;
}
.pr-4{
  padding-right: 1rem;
}
.pr-8{
  padding-right: 2rem;
}
.pt-1{
  padding-top: 0.25rem;
}
.pt-2{
  padding-top: 0.5rem;
}
.pt-3{
  padding-top: 0.75rem;
}
.pt-4{
  padding-top: 1rem;
}
.pt-5{
  padding-top: 1.25rem;
}
.pt-6{
  padding-top: 1.5rem;
}
.pt-8{
  padding-top: 2rem;
}
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.align-top{
  vertical-align: top;
}
.align-middle{
  vertical-align: middle;
}
.align-bottom{
  vertical-align: bottom;
}
.font-mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.font-sans{
  font-family: Public Sans, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl{
  font-size: 3rem;
  line-height: 1;
}
.text-6xl{
  font-size: 3.75rem;
  line-height: 1;
}
.text-\[10px\]{
  font-size: 10px;
}
.text-\[11px\]{
  font-size: 11px;
}
.text-\[13px\]{
  font-size: 13px;
}
.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-black{
  font-weight: 900;
}
.font-bold{
  font-weight: 700;
}
.font-light{
  font-weight: 300;
}
.font-medium{
  font-weight: 500;
}
.font-normal{
  font-weight: 400;
}
.font-semibold{
  font-weight: 600;
}
.uppercase{
  text-transform: uppercase;
}
.capitalize{
  text-transform: capitalize;
}
.italic{
  font-style: italic;
}
.tabular-nums{
  --tw-numeric-spacing: tabular-nums;
  font-feature-settings: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) tabular-nums var(--tw-numeric-fraction);
  font-feature-settings: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) tabular-nums var(--tw-numeric-fraction);
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.leading-4{
  line-height: 1rem;
}
.leading-5{
  line-height: 1.25rem;
}
.leading-6{
  line-height: 1.5rem;
}
.leading-loose{
  line-height: 2;
}
.leading-none{
  line-height: 1;
}
.leading-normal{
  line-height: 1.5;
}
.leading-relaxed{
  line-height: 1.625;
}
.leading-snug{
  line-height: 1.375;
}
.tracking-\[0\.18em\]{
  letter-spacing: 0.18em;
}
.tracking-wide{
  letter-spacing: 0.025em;
}
.tracking-wider{
  letter-spacing: 0.05em;
}
.tracking-widest{
  letter-spacing: 0.1em;
}
.\!text-white{
  --tw-text-opacity: 1 !important;
  color: rgba(255, 255, 255, 1) !important;
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1)) !important;
}
.text-amber-600{
  --tw-text-opacity: 1;
  color: rgba(217, 119, 6, 1);
  color: rgba(217, 119, 6, var(--tw-text-opacity, 1));
}
.text-black{
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, 1);
  color: rgba(0, 0, 0, var(--tw-text-opacity, 1));
}
.text-blue-400{
  --tw-text-opacity: 1;
  color: rgba(96, 165, 250, 1);
  color: rgba(96, 165, 250, var(--tw-text-opacity, 1));
}
.text-blue-500{
  --tw-text-opacity: 1;
  color: rgba(59, 130, 246, 1);
  color: rgba(59, 130, 246, var(--tw-text-opacity, 1));
}
.text-blue-600{
  --tw-text-opacity: 1;
  color: rgba(37, 99, 235, 1);
  color: rgba(37, 99, 235, var(--tw-text-opacity, 1));
}
.text-blue-700{
  --tw-text-opacity: 1;
  color: rgba(29, 78, 216, 1);
  color: rgba(29, 78, 216, var(--tw-text-opacity, 1));
}
.text-blue-800{
  --tw-text-opacity: 1;
  color: rgba(30, 64, 175, 1);
  color: rgba(30, 64, 175, var(--tw-text-opacity, 1));
}
.text-blue-900{
  --tw-text-opacity: 1;
  color: rgba(30, 58, 138, 1);
  color: rgba(30, 58, 138, var(--tw-text-opacity, 1));
}
.text-cyan-800{
  --tw-text-opacity: 1;
  color: rgba(21, 94, 117, 1);
  color: rgba(21, 94, 117, var(--tw-text-opacity, 1));
}
.text-gray-100{
  --tw-text-opacity: 1;
  color: rgba(243, 244, 246, 1);
  color: rgba(243, 244, 246, var(--tw-text-opacity, 1));
}
.text-gray-200{
  --tw-text-opacity: 1;
  color: rgba(229, 231, 235, 1);
  color: rgba(229, 231, 235, var(--tw-text-opacity, 1));
}
.text-gray-300{
  --tw-text-opacity: 1;
  color: rgba(209, 213, 219, 1);
  color: rgba(209, 213, 219, var(--tw-text-opacity, 1));
}
.text-gray-400{
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
}
.text-gray-500{
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, 1);
  color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}
.text-gray-600{
  --tw-text-opacity: 1;
  color: rgba(75, 85, 99, 1);
  color: rgba(75, 85, 99, var(--tw-text-opacity, 1));
}
.text-gray-700{
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, 1);
  color: rgba(55, 65, 81, var(--tw-text-opacity, 1));
}
.text-gray-800{
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, 1);
  color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
}
.text-gray-900{
  --tw-text-opacity: 1;
  color: rgba(17, 24, 39, 1);
  color: rgba(17, 24, 39, var(--tw-text-opacity, 1));
}
.text-green-300{
  --tw-text-opacity: 1;
  color: rgba(134, 239, 172, 1);
  color: rgba(134, 239, 172, var(--tw-text-opacity, 1));
}
.text-green-400{
  --tw-text-opacity: 1;
  color: rgba(74, 222, 128, 1);
  color: rgba(74, 222, 128, var(--tw-text-opacity, 1));
}
.text-green-500{
  --tw-text-opacity: 1;
  color: rgba(34, 197, 94, 1);
  color: rgba(34, 197, 94, var(--tw-text-opacity, 1));
}
.text-green-600{
  --tw-text-opacity: 1;
  color: rgba(22, 163, 74, 1);
  color: rgba(22, 163, 74, var(--tw-text-opacity, 1));
}
.text-green-700{
  --tw-text-opacity: 1;
  color: rgba(21, 128, 61, 1);
  color: rgba(21, 128, 61, var(--tw-text-opacity, 1));
}
.text-green-800{
  --tw-text-opacity: 1;
  color: rgba(22, 101, 52, 1);
  color: rgba(22, 101, 52, var(--tw-text-opacity, 1));
}
.text-indigo-600{
  --tw-text-opacity: 1;
  color: rgba(79, 70, 229, 1);
  color: rgba(79, 70, 229, var(--tw-text-opacity, 1));
}
.text-indigo-800{
  --tw-text-opacity: 1;
  color: rgba(55, 48, 163, 1);
  color: rgba(55, 48, 163, var(--tw-text-opacity, 1));
}
.text-neutral-500{
  --tw-text-opacity: 1;
  color: rgba(115, 115, 115, 1);
  color: rgba(115, 115, 115, var(--tw-text-opacity, 1));
}
.text-orange-500{
  --tw-text-opacity: 1;
  color: rgba(249, 115, 22, 1);
  color: rgba(249, 115, 22, var(--tw-text-opacity, 1));
}
.text-orange-600{
  --tw-text-opacity: 1;
  color: rgba(234, 88, 12, 1);
  color: rgba(234, 88, 12, var(--tw-text-opacity, 1));
}
.text-orange-700{
  --tw-text-opacity: 1;
  color: rgba(194, 65, 12, 1);
  color: rgba(194, 65, 12, var(--tw-text-opacity, 1));
}
.text-orange-800{
  --tw-text-opacity: 1;
  color: rgba(154, 52, 18, 1);
  color: rgba(154, 52, 18, var(--tw-text-opacity, 1));
}
.text-orange-900{
  --tw-text-opacity: 1;
  color: rgba(124, 45, 18, 1);
  color: rgba(124, 45, 18, var(--tw-text-opacity, 1));
}
.text-pink-800{
  --tw-text-opacity: 1;
  color: rgba(157, 23, 77, 1);
  color: rgba(157, 23, 77, var(--tw-text-opacity, 1));
}
.text-primary-500{
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, 1);
  color: rgba(239, 68, 68, var(--tw-text-opacity, 1));
}
.text-primary-600{
  --tw-text-opacity: 1;
  color: rgba(220, 38, 38, 1);
  color: rgba(220, 38, 38, var(--tw-text-opacity, 1));
}
.text-purple-700{
  --tw-text-opacity: 1;
  color: rgba(126, 34, 206, 1);
  color: rgba(126, 34, 206, var(--tw-text-opacity, 1));
}
.text-purple-800{
  --tw-text-opacity: 1;
  color: rgba(107, 33, 168, 1);
  color: rgba(107, 33, 168, var(--tw-text-opacity, 1));
}
.text-purple-900{
  --tw-text-opacity: 1;
  color: rgba(88, 28, 135, 1);
  color: rgba(88, 28, 135, var(--tw-text-opacity, 1));
}
.text-red-400{
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, 1);
  color: rgba(248, 113, 113, var(--tw-text-opacity, 1));
}
.text-red-500{
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, 1);
  color: rgba(239, 68, 68, var(--tw-text-opacity, 1));
}
.text-red-600{
  --tw-text-opacity: 1;
  color: rgba(220, 38, 38, 1);
  color: rgba(220, 38, 38, var(--tw-text-opacity, 1));
}
.text-red-700{
  --tw-text-opacity: 1;
  color: rgba(185, 28, 28, 1);
  color: rgba(185, 28, 28, var(--tw-text-opacity, 1));
}
.text-red-800{
  --tw-text-opacity: 1;
  color: rgba(153, 27, 27, 1);
  color: rgba(153, 27, 27, var(--tw-text-opacity, 1));
}
.text-rose-800{
  --tw-text-opacity: 1;
  color: rgba(159, 18, 57, 1);
  color: rgba(159, 18, 57, var(--tw-text-opacity, 1));
}
.text-slate-200{
  --tw-text-opacity: 1;
  color: rgba(226, 232, 240, 1);
  color: rgba(226, 232, 240, var(--tw-text-opacity, 1));
}
.text-slate-400{
  --tw-text-opacity: 1;
  color: rgba(148, 163, 184, 1);
  color: rgba(148, 163, 184, var(--tw-text-opacity, 1));
}
.text-slate-500{
  --tw-text-opacity: 1;
  color: rgba(100, 116, 139, 1);
  color: rgba(100, 116, 139, var(--tw-text-opacity, 1));
}
.text-slate-600{
  --tw-text-opacity: 1;
  color: rgba(71, 85, 105, 1);
  color: rgba(71, 85, 105, var(--tw-text-opacity, 1));
}
.text-slate-700{
  --tw-text-opacity: 1;
  color: rgba(51, 65, 85, 1);
  color: rgba(51, 65, 85, var(--tw-text-opacity, 1));
}
.text-teal-800{
  --tw-text-opacity: 1;
  color: rgba(17, 94, 89, 1);
  color: rgba(17, 94, 89, var(--tw-text-opacity, 1));
}
.text-white{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.text-yellow-400{
  --tw-text-opacity: 1;
  color: rgba(250, 204, 21, 1);
  color: rgba(250, 204, 21, var(--tw-text-opacity, 1));
}
.text-yellow-500{
  --tw-text-opacity: 1;
  color: rgba(234, 179, 8, 1);
  color: rgba(234, 179, 8, var(--tw-text-opacity, 1));
}
.text-yellow-600{
  --tw-text-opacity: 1;
  color: rgba(202, 138, 4, 1);
  color: rgba(202, 138, 4, var(--tw-text-opacity, 1));
}
.text-yellow-700{
  --tw-text-opacity: 1;
  color: rgba(161, 98, 7, 1);
  color: rgba(161, 98, 7, var(--tw-text-opacity, 1));
}
.text-yellow-800{
  --tw-text-opacity: 1;
  color: rgba(133, 77, 14, 1);
  color: rgba(133, 77, 14, var(--tw-text-opacity, 1));
}
.underline{
  text-decoration-line: underline;
}
.no-underline{
  text-decoration-line: none;
}
.antialiased{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.placeholder-gray-500::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(107, 114, 128, 1);
  color: rgba(107, 114, 128, var(--tw-placeholder-opacity, 1));
}
.placeholder-gray-500::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(107, 114, 128, 1);
  color: rgba(107, 114, 128, var(--tw-placeholder-opacity, 1));
}
.opacity-0{
  opacity: 0;
}
.opacity-100{
  opacity: 1;
}
.opacity-25{
  opacity: 0.25;
}
.opacity-50{
  opacity: 0.5;
}
.opacity-60{
  opacity: 0.6;
}
.opacity-70{
  opacity: 0.7;
}
.opacity-75{
  opacity: 0.75;
}
.opacity-90{
  opacity: 0.9;
}
.shadow{
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.shadow-2xl{
  --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.shadow-md{
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.shadow-sm{
  --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.shadow-xl{
  --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.outline{
  outline-style: solid;
}
.ring-1{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(1px + 0px) #2563eb, 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
}
.ring-2{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(2px + 2px) #2563eb, 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
}
.ring-black{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity, 1));
}
.ring-blue-500{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity, 1));
}
.ring-opacity-5{
  --tw-ring-opacity: 0.05;
}
.ring-opacity-50{
  --tw-ring-opacity: 0.5;
}
.blur{
  --tw-blur: blur(8px);
  filter: blur(8px) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-sm{
  --tw-blur: blur(4px);
  filter: blur(4px) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.grayscale{
  --tw-grayscale: grayscale(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) grayscale(100%) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.invert{
  --tw-invert: invert(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) invert(100%) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.\!filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;
}
.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity{
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform{
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-100{
  transition-duration: 100ms;
}
.duration-150{
  transition-duration: 150ms;
}
.duration-200{
  transition-duration: 200ms;
}
.duration-300{
  transition-duration: 300ms;
}
.ease-in{
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-linear{
  transition-timing-function: linear;
}
.ease-out{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
/* Override legacy orange hover styles - use muted gray instead */
.group:hover .group-hover\:text-orange-600 {
  color: #374151 !important; /* gray-700 */
}
.hover\:text-orange-600:hover,
.hover\:text-orange-700:hover {
  color: #374151 !important; /* gray-700 */
}
.text-orange-600,
.text-orange-700 {
  color: #374151 !important; /* gray-700 */
}
.hover\:bg-orange-50:hover {
  background-color: #f3f4f6 !important; /* gray-100 */
  color: #374151 !important; /* gray-700 */
}
/* Reusable styling for settings action buttons - prevent orange text on hover */
.settings-action-btn,
a.settings-action-btn,
.connect-xero-btn,
a.connect-xero-btn,
a[href*="xero_connect"],
a[href*="google_calendar_connect"] {
  color: rgb(17, 24, 39) !important; /* gray-900 */
}
.settings-action-btn:hover,
a.settings-action-btn:hover,
.connect-xero-btn:hover,
a.connect-xero-btn:hover,
a[href*="xero_connect"]:hover,
a[href*="google_calendar_connect"]:hover {
  color: rgb(17, 24, 39) !important; /* gray-900 - keep gray on hover */
}
.settings-action-btn:hover *,
a.settings-action-btn:hover *,
.connect-xero-btn:hover *,
a.connect-xero-btn:hover *,
a[href*="xero_connect"]:hover *,
a[href*="google_calendar_connect"]:hover * {
  color: rgb(17, 24, 39) !important; /* gray-900 - keep child elements gray too */
}
/* Override ALL orange hover text globally - catch any remaining instances */
/* Use maximum specificity to override inline styles */
a.nav-link:hover,
a.nav-link:hover *,
.nav-link:hover,
.nav-link:hover *,
header a.nav-link:hover,
header a.nav-link:hover *,
.nav-container a.nav-link:hover,
.nav-container a.nav-link:hover *,
.top-nav a.nav-link:hover,
.top-nav a.nav-link:hover *,
.nav-container nav a.nav-link:hover,
.nav-container nav a.nav-link:hover *,
.top-nav nav a.nav-link:hover,
.top-nav nav a.nav-link:hover *,
nav a.nav-link:hover,
nav a.nav-link:hover *,
a:hover.nav-link,
a:hover.nav-link * {
  color: #374151 !important; /* gray-700 - override any orange hover including inline styles */
}
/* Override any inline styles with orange color on hover - target style attribute */
a[style*='f16222']:hover,
a[style*='f16222']:hover *,
.nav-link[style*='f16222']:hover,
.nav-link[style*='f16222']:hover *,
a.nav-link[style*='f16222']:hover,
a.nav-link[style*='f16222']:hover * {
  color: #374151 !important; /* gray-700 */
}
/* Additional high-specificity selectors for navigation */
.nav-container nav .nav-link:hover,
.top-nav .nav-link:hover,
.nav-container a:hover,
.top-nav a:hover {
  color: #374151 !important; /* gray-700 */
}
/* Final override - ensure ALL nav links use gray on hover, overriding any remaining styles */
.nav-link:not(.active):hover,
a.nav-link:not(.active):hover,
header a.nav-link:not(.active):hover,
.nav-container a.nav-link:not(.active):hover,
.top-nav a.nav-link:not(.active):hover,
.nav-container nav a.nav-link:not(.active):hover,
.top-nav nav a.nav-link:not(.active):hover,
nav a.nav-link:not(.active):hover {
  color: #374151 !important; /* gray-700 - final override */
}
.btn-peach {
  background-color: #eee2ce;
  color: #ff7a45;
  border-radius: 0;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.btn-peach:hover,
.btn-peach:focus {
  background-color: #f2cfa9;
  color: #ff5c1a;
  box-shadow: 0 6px 16px rgba(255, 122, 69, 0.18);
}
.dark .dark\:prose-invert{
  --tw-prose-body: var(--tw-prose-invert-body);
  --tw-prose-headings: var(--tw-prose-invert-headings);
  --tw-prose-lead: var(--tw-prose-invert-lead);
  --tw-prose-links: var(--tw-prose-invert-links);
  --tw-prose-bold: var(--tw-prose-invert-bold);
  --tw-prose-counters: var(--tw-prose-invert-counters);
  --tw-prose-bullets: var(--tw-prose-invert-bullets);
  --tw-prose-hr: var(--tw-prose-invert-hr);
  --tw-prose-quotes: var(--tw-prose-invert-quotes);
  --tw-prose-quote-borders: var(--tw-prose-invert-quote-borders);
  --tw-prose-captions: var(--tw-prose-invert-captions);
  --tw-prose-kbd: var(--tw-prose-invert-kbd);
  --tw-prose-kbd-shadows: var(--tw-prose-invert-kbd-shadows);
  --tw-prose-code: var(--tw-prose-invert-code);
  --tw-prose-pre-code: var(--tw-prose-invert-pre-code);
  --tw-prose-pre-bg: var(--tw-prose-invert-pre-bg);
  --tw-prose-th-borders: var(--tw-prose-invert-th-borders);
  --tw-prose-td-borders: var(--tw-prose-invert-td-borders);
}
.file\:mr-3::file-selector-button{
  margin-right: 0.75rem;
}
.file\:mr-4::file-selector-button{
  margin-right: 1rem;
}
.file\:rounded-full::file-selector-button{
  border-radius: 9999px;
}
.file\:border-0::file-selector-button{
  border-width: 0px;
}
.file\:bg-gray-50::file-selector-button{
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, 1);
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity, 1));
}
.file\:bg-gray-900::file-selector-button{
  --tw-bg-opacity: 1;
  background-color: rgba(17, 24, 39, 1);
  background-color: rgba(17, 24, 39, var(--tw-bg-opacity, 1));
}
.file\:px-4::file-selector-button{
  padding-left: 1rem;
  padding-right: 1rem;
}
.file\:py-2::file-selector-button{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.file\:text-sm::file-selector-button{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.file\:font-semibold::file-selector-button{
  font-weight: 600;
}
.file\:text-gray-700::file-selector-button{
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, 1);
  color: rgba(55, 65, 81, var(--tw-text-opacity, 1));
}
.file\:text-white::file-selector-button{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.backdrop\:bg-black\/50::backdrop{
  background-color: rgba(0, 0, 0, 0.5);
}
.backdrop\:backdrop-blur-sm::backdrop{
  --tw-backdrop-blur: blur(4px);
  backdrop-filter: blur(4px) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.last\:border-0:last-child{
  border-width: 0px;
}
.only\:block:only-child{
  display: block;
}
.hover\:cursor-pointer:hover{
  cursor: pointer;
}
.hover\:border-gray-300:hover{
  --tw-border-opacity: 1;
  border-color: rgba(209, 213, 219, 1);
  border-color: rgba(209, 213, 219, var(--tw-border-opacity, 1));
}
.hover\:border-gray-500:hover{
  --tw-border-opacity: 1;
  border-color: rgba(107, 114, 128, 1);
  border-color: rgba(107, 114, 128, var(--tw-border-opacity, 1));
}
.hover\:border-neutral-300:hover{
  --tw-border-opacity: 1;
  border-color: rgba(212, 212, 212, 1);
  border-color: rgba(212, 212, 212, var(--tw-border-opacity, 1));
}
.hover\:\!bg-red-700:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(185, 28, 28, 1) !important;
  background-color: rgba(185, 28, 28, var(--tw-bg-opacity, 1)) !important;
}
.hover\:bg-black:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, 1);
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(219, 234, 254, 1);
  background-color: rgba(219, 234, 254, var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(191, 219, 254, 1);
  background-color: rgba(191, 219, 254, var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(239, 246, 255, 1);
  background-color: rgba(239, 246, 255, var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(37, 99, 235, 1);
  background-color: rgba(37, 99, 235, var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(29, 78, 216, 1);
  background-color: rgba(29, 78, 216, var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, 1);
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, 1);
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-300:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(209, 213, 219, 1);
  background-color: rgba(209, 213, 219, var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-400:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(156, 163, 175, 1);
  background-color: rgba(156, 163, 175, var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, 1);
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-900:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(17, 24, 39, 1);
  background-color: rgba(17, 24, 39, var(--tw-bg-opacity, 1));
}
.hover\:bg-green-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(22, 163, 74, 1);
  background-color: rgba(22, 163, 74, var(--tw-bg-opacity, 1));
}
.hover\:bg-green-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(21, 128, 61, 1);
  background-color: rgba(21, 128, 61, var(--tw-bg-opacity, 1));
}
.hover\:bg-indigo-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(67, 56, 202, 1);
  background-color: rgba(67, 56, 202, var(--tw-bg-opacity, 1));
}
.hover\:bg-orange-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 237, 213, 1);
  background-color: rgba(255, 237, 213, var(--tw-bg-opacity, 1));
}
.hover\:bg-orange-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(234, 88, 12, 1);
  background-color: rgba(234, 88, 12, var(--tw-bg-opacity, 1));
}
.hover\:bg-orange-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(194, 65, 12, 1);
  background-color: rgba(194, 65, 12, var(--tw-bg-opacity, 1));
}
.hover\:bg-purple-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(243, 232, 255, 1);
  background-color: rgba(243, 232, 255, var(--tw-bg-opacity, 1));
}
.hover\:bg-purple-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(233, 213, 255, 1);
  background-color: rgba(233, 213, 255, var(--tw-bg-opacity, 1));
}
.hover\:bg-purple-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(147, 51, 234, 1);
  background-color: rgba(147, 51, 234, var(--tw-bg-opacity, 1));
}
.hover\:bg-purple-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(126, 34, 206, 1);
  background-color: rgba(126, 34, 206, var(--tw-bg-opacity, 1));
}
.hover\:bg-red-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 202, 202, 1);
  background-color: rgba(254, 202, 202, var(--tw-bg-opacity, 1));
}
.hover\:bg-red-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 242, 242, 1);
  background-color: rgba(254, 242, 242, var(--tw-bg-opacity, 1));
}
.hover\:bg-red-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(220, 38, 38, 1);
  background-color: rgba(220, 38, 38, var(--tw-bg-opacity, 1));
}
.hover\:bg-red-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(185, 28, 28, 1);
  background-color: rgba(185, 28, 28, var(--tw-bg-opacity, 1));
}
.hover\:bg-rose-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(254, 205, 211, 1);
  background-color: rgba(254, 205, 211, var(--tw-bg-opacity, 1));
}
.hover\:bg-slate-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(241, 245, 249, 1);
  background-color: rgba(241, 245, 249, var(--tw-bg-opacity, 1));
}
.hover\:bg-white:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity, 1));
}
.hover\:bg-yellow-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(202, 138, 4, 1);
  background-color: rgba(202, 138, 4, var(--tw-bg-opacity, 1));
}
.hover\:text-black:hover{
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, 1);
  color: rgba(0, 0, 0, var(--tw-text-opacity, 1));
}
.hover\:text-blue-700:hover{
  --tw-text-opacity: 1;
  color: rgba(29, 78, 216, 1);
  color: rgba(29, 78, 216, var(--tw-text-opacity, 1));
}
.hover\:text-blue-800:hover{
  --tw-text-opacity: 1;
  color: rgba(30, 64, 175, 1);
  color: rgba(30, 64, 175, var(--tw-text-opacity, 1));
}
.hover\:text-gray-500:hover{
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, 1);
  color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}
.hover\:text-gray-600:hover{
  --tw-text-opacity: 1;
  color: rgba(75, 85, 99, 1);
  color: rgba(75, 85, 99, var(--tw-text-opacity, 1));
}
.hover\:text-gray-700:hover{
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, 1);
  color: rgba(55, 65, 81, var(--tw-text-opacity, 1));
}
.hover\:text-gray-800:hover{
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, 1);
  color: rgba(31, 41, 55, var(--tw-text-opacity, 1));
}
.hover\:text-gray-900:hover{
  --tw-text-opacity: 1;
  color: rgba(17, 24, 39, 1);
  color: rgba(17, 24, 39, var(--tw-text-opacity, 1));
}
.hover\:text-indigo-500:hover{
  --tw-text-opacity: 1;
  color: rgba(99, 102, 241, 1);
  color: rgba(99, 102, 241, var(--tw-text-opacity, 1));
}
.hover\:text-indigo-900:hover{
  --tw-text-opacity: 1;
  color: rgba(49, 46, 129, 1);
  color: rgba(49, 46, 129, var(--tw-text-opacity, 1));
}
.hover\:text-neutral-700:hover{
  --tw-text-opacity: 1;
  color: rgba(64, 64, 64, 1);
  color: rgba(64, 64, 64, var(--tw-text-opacity, 1));
}
.hover\:text-primary-600:hover{
  --tw-text-opacity: 1;
  color: rgba(220, 38, 38, 1);
  color: rgba(220, 38, 38, var(--tw-text-opacity, 1));
}
.hover\:text-red-700:hover{
  --tw-text-opacity: 1;
  color: rgba(185, 28, 28, 1);
  color: rgba(185, 28, 28, var(--tw-text-opacity, 1));
}
.hover\:text-red-800:hover{
  --tw-text-opacity: 1;
  color: rgba(153, 27, 27, 1);
  color: rgba(153, 27, 27, var(--tw-text-opacity, 1));
}
.hover\:text-red-900:hover{
  --tw-text-opacity: 1;
  color: rgba(127, 29, 29, 1);
  color: rgba(127, 29, 29, var(--tw-text-opacity, 1));
}
.hover\:text-slate-700:hover{
  --tw-text-opacity: 1;
  color: rgba(51, 65, 85, 1);
  color: rgba(51, 65, 85, var(--tw-text-opacity, 1));
}
.hover\:text-white:hover{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.hover\:text-yellow-900:hover{
  --tw-text-opacity: 1;
  color: rgba(113, 63, 18, 1);
  color: rgba(113, 63, 18, var(--tw-text-opacity, 1));
}
.hover\:underline:hover{
  text-decoration-line: underline;
}
.hover\:opacity-100:hover{
  opacity: 1;
}
.hover\:opacity-70:hover{
  opacity: 0.7;
}
.hover\:opacity-80:hover{
  opacity: 0.8;
}
.hover\:file\:bg-black::file-selector-button:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, 1);
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity, 1));
}
.hover\:file\:bg-gray-100::file-selector-button:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, 1);
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity, 1));
}
.focus\:border-blue-500:focus{
  --tw-border-opacity: 1;
  border-color: rgba(59, 130, 246, 1);
  border-color: rgba(59, 130, 246, var(--tw-border-opacity, 1));
}
.focus\:border-gray-600:focus{
  --tw-border-opacity: 1;
  border-color: rgba(75, 85, 99, 1);
  border-color: rgba(75, 85, 99, var(--tw-border-opacity, 1));
}
.focus\:border-green-500:focus{
  --tw-border-opacity: 1;
  border-color: rgba(34, 197, 94, 1);
  border-color: rgba(34, 197, 94, var(--tw-border-opacity, 1));
}
.focus\:border-indigo-500:focus{
  --tw-border-opacity: 1;
  border-color: rgba(99, 102, 241, 1);
  border-color: rgba(99, 102, 241, var(--tw-border-opacity, 1));
}
.focus\:border-orange-500:focus{
  --tw-border-opacity: 1;
  border-color: rgba(249, 115, 22, 1);
  border-color: rgba(249, 115, 22, var(--tw-border-opacity, 1));
}
.focus\:border-red-500:focus{
  --tw-border-opacity: 1;
  border-color: rgba(239, 68, 68, 1);
  border-color: rgba(239, 68, 68, var(--tw-border-opacity, 1));
}
.focus\:placeholder-gray-400:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-placeholder-opacity, 1));
}
.focus\:placeholder-gray-400:focus::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-placeholder-opacity, 1));
}
.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:ring-1:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(1px + 0px) #2563eb, 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
}
.focus\:ring-2:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(2px + 2px) #2563eb, 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
}
.focus\:ring-blue-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity, 1));
}
.focus\:ring-gray-400:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity, 1));
}
.focus\:ring-gray-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(107, 114, 128, var(--tw-ring-opacity, 1));
}
.focus\:ring-gray-600:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(75, 85, 99, var(--tw-ring-opacity, 1));
}
.focus\:ring-green-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(34, 197, 94, var(--tw-ring-opacity, 1));
}
.focus\:ring-indigo-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(99, 102, 241, var(--tw-ring-opacity, 1));
}
.focus\:ring-orange-200:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(254, 215, 170, var(--tw-ring-opacity, 1));
}
.focus\:ring-orange-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(249, 115, 22, var(--tw-ring-opacity, 1));
}
.focus\:ring-red-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(239, 68, 68, var(--tw-ring-opacity, 1));
}
.focus\:ring-yellow-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(234, 179, 8, var(--tw-ring-opacity, 1));
}
.focus\:ring-offset-2:focus{
  --tw-ring-offset-width: 2px;
}
.focus-visible\:outline:focus-visible{
  outline-style: solid;
}
.focus-visible\:outline-2:focus-visible{
  outline-width: 2px;
}
.focus-visible\:outline-offset-2:focus-visible{
  outline-offset: 2px;
}
.focus-visible\:outline-red-500:focus-visible{
  outline-color: #ef4444;
}
.disabled\:pointer-events-none:disabled{
  pointer-events: none;
}
.disabled\:cursor-not-allowed:disabled{
  cursor: not-allowed;
}
.disabled\:opacity-50:disabled{
  opacity: 0.5;
}
.group:hover .group-hover\:inline-block{
  display: inline-block;
}
.group:hover .group-hover\:text-gray-700{
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, 1);
  color: rgba(55, 65, 81, var(--tw-text-opacity, 1));
}
.group:hover .group-hover\:text-gray-900{
  --tw-text-opacity: 1;
  color: rgba(17, 24, 39, 1);
  color: rgba(17, 24, 39, var(--tw-text-opacity, 1));
}
.group:hover .group-hover\:opacity-100{
  opacity: 1;
}
.peer:checked ~ .peer-checked\:hidden{
  display: none;
}
.peer:checked ~ .peer-checked\:blur-none{
  --tw-blur:  ;
  filter:   var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.dark .dark\:divide-gray-700 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgba(55, 65, 81, 1);
  border-color: rgba(55, 65, 81, var(--tw-divide-opacity, 1));
}
.dark .dark\:rounded{
  border-radius: 0.25rem;
}
.dark .dark\:border{
  border-width: 1px;
}
.dark .dark\:border-blue-700{
  --tw-border-opacity: 1;
  border-color: rgba(29, 78, 216, 1);
  border-color: rgba(29, 78, 216, var(--tw-border-opacity, 1));
}
.dark .dark\:border-blue-800{
  --tw-border-opacity: 1;
  border-color: rgba(30, 64, 175, 1);
  border-color: rgba(30, 64, 175, var(--tw-border-opacity, 1));
}
.dark .dark\:border-gray-400\/50{
  border-color: rgba(156, 163, 175, 0.5);
}
.dark .dark\:border-gray-600{
  --tw-border-opacity: 1;
  border-color: rgba(75, 85, 99, 1);
  border-color: rgba(75, 85, 99, var(--tw-border-opacity, 1));
}
.dark .dark\:border-gray-700{
  --tw-border-opacity: 1;
  border-color: rgba(55, 65, 81, 1);
  border-color: rgba(55, 65, 81, var(--tw-border-opacity, 1));
}
.dark .dark\:border-gray-800{
  --tw-border-opacity: 1;
  border-color: rgba(31, 41, 55, 1);
  border-color: rgba(31, 41, 55, var(--tw-border-opacity, 1));
}
.dark .dark\:border-orange-700{
  --tw-border-opacity: 1;
  border-color: rgba(194, 65, 12, 1);
  border-color: rgba(194, 65, 12, var(--tw-border-opacity, 1));
}
.dark .dark\:border-red-600{
  --tw-border-opacity: 1;
  border-color: rgba(220, 38, 38, 1);
  border-color: rgba(220, 38, 38, var(--tw-border-opacity, 1));
}
.dark .dark\:border-red-800{
  --tw-border-opacity: 1;
  border-color: rgba(153, 27, 27, 1);
  border-color: rgba(153, 27, 27, var(--tw-border-opacity, 1));
}
.dark .dark\:bg-blue-900\/20{
  background-color: rgba(30, 58, 138, 0.2);
}
.dark .dark\:bg-blue-900\/30{
  background-color: rgba(30, 58, 138, 0.3);
}
.dark .dark\:bg-gray-200{
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, 1);
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity, 1));
}
.dark .dark\:bg-gray-600{
  --tw-bg-opacity: 1;
  background-color: rgba(75, 85, 99, 1);
  background-color: rgba(75, 85, 99, var(--tw-bg-opacity, 1));
}
.dark .dark\:bg-gray-700{
  --tw-bg-opacity: 1;
  background-color: rgba(55, 65, 81, 1);
  background-color: rgba(55, 65, 81, var(--tw-bg-opacity, 1));
}
.dark .dark\:bg-gray-700\/30{
  background-color: rgba(55, 65, 81, 0.3);
}
.dark .dark\:bg-gray-800{
  --tw-bg-opacity: 1;
  background-color: rgba(31, 41, 55, 1);
  background-color: rgba(31, 41, 55, var(--tw-bg-opacity, 1));
}
.dark .dark\:bg-gray-900{
  --tw-bg-opacity: 1;
  background-color: rgba(17, 24, 39, 1);
  background-color: rgba(17, 24, 39, var(--tw-bg-opacity, 1));
}
.dark .dark\:bg-gray-900\/60{
  background-color: rgba(17, 24, 39, 0.6);
}
.dark .dark\:bg-gray-900\/75{
  background-color: rgba(17, 24, 39, 0.75);
}
.dark .dark\:bg-gray-950{
  --tw-bg-opacity: 1;
  background-color: rgba(3, 7, 18, 1);
  background-color: rgba(3, 7, 18, var(--tw-bg-opacity, 1));
}
.dark .dark\:bg-orange-900\/20{
  background-color: rgba(124, 45, 18, 0.2);
}
.dark .dark\:bg-orange-900\/30{
  background-color: rgba(124, 45, 18, 0.3);
}
.dark .dark\:bg-primary-800{
  --tw-bg-opacity: 1;
  background-color: rgba(153, 27, 27, 1);
  background-color: rgba(153, 27, 27, var(--tw-bg-opacity, 1));
}
.dark .dark\:bg-primary-900{
  --tw-bg-opacity: 1;
  background-color: rgba(127, 29, 29, 1);
  background-color: rgba(127, 29, 29, var(--tw-bg-opacity, 1));
}
.dark .dark\:bg-purple-900\/30{
  background-color: rgba(88, 28, 135, 0.3);
}
.dark .dark\:bg-red-600{
  --tw-bg-opacity: 1;
  background-color: rgba(220, 38, 38, 1);
  background-color: rgba(220, 38, 38, var(--tw-bg-opacity, 1));
}
.dark .dark\:bg-red-900\/20{
  background-color: rgba(127, 29, 29, 0.2);
}
.dark .dark\:bg-red-900\/30{
  background-color: rgba(127, 29, 29, 0.3);
}
.dark .dark\:text-blue-200{
  --tw-text-opacity: 1;
  color: rgba(191, 219, 254, 1);
  color: rgba(191, 219, 254, var(--tw-text-opacity, 1));
}
.dark .dark\:text-blue-300{
  --tw-text-opacity: 1;
  color: rgba(147, 197, 253, 1);
  color: rgba(147, 197, 253, var(--tw-text-opacity, 1));
}
.dark .dark\:text-blue-400{
  --tw-text-opacity: 1;
  color: rgba(96, 165, 250, 1);
  color: rgba(96, 165, 250, var(--tw-text-opacity, 1));
}
.dark .dark\:text-gray-100{
  --tw-text-opacity: 1;
  color: rgba(243, 244, 246, 1);
  color: rgba(243, 244, 246, var(--tw-text-opacity, 1));
}
.dark .dark\:text-gray-200{
  --tw-text-opacity: 1;
  color: rgba(229, 231, 235, 1);
  color: rgba(229, 231, 235, var(--tw-text-opacity, 1));
}
.dark .dark\:text-gray-200\/75{
  color: rgba(229, 231, 235, 0.75);
}
.dark .dark\:text-gray-300{
  --tw-text-opacity: 1;
  color: rgba(209, 213, 219, 1);
  color: rgba(209, 213, 219, var(--tw-text-opacity, 1));
}
.dark .dark\:text-gray-300\/75{
  color: rgba(209, 213, 219, 0.75);
}
.dark .dark\:text-gray-400{
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
}
.dark .dark\:text-gray-50{
  --tw-text-opacity: 1;
  color: rgba(249, 250, 251, 1);
  color: rgba(249, 250, 251, var(--tw-text-opacity, 1));
}
.dark .dark\:text-gray-500{
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, 1);
  color: rgba(107, 114, 128, var(--tw-text-opacity, 1));
}
.dark .dark\:text-green-400{
  --tw-text-opacity: 1;
  color: rgba(74, 222, 128, 1);
  color: rgba(74, 222, 128, var(--tw-text-opacity, 1));
}
.dark .dark\:text-orange-200{
  --tw-text-opacity: 1;
  color: rgba(254, 215, 170, 1);
  color: rgba(254, 215, 170, var(--tw-text-opacity, 1));
}
.dark .dark\:text-orange-300{
  --tw-text-opacity: 1;
  color: rgba(253, 186, 116, 1);
  color: rgba(253, 186, 116, var(--tw-text-opacity, 1));
}
.dark .dark\:text-orange-400{
  --tw-text-opacity: 1;
  color: rgba(251, 146, 60, 1);
  color: rgba(251, 146, 60, var(--tw-text-opacity, 1));
}
.dark .dark\:text-primary-400{
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, 1);
  color: rgba(248, 113, 113, var(--tw-text-opacity, 1));
}
.dark .dark\:text-purple-300{
  --tw-text-opacity: 1;
  color: rgba(216, 180, 254, 1);
  color: rgba(216, 180, 254, var(--tw-text-opacity, 1));
}
.dark .dark\:text-red-200{
  --tw-text-opacity: 1;
  color: rgba(254, 202, 202, 1);
  color: rgba(254, 202, 202, var(--tw-text-opacity, 1));
}
.dark .dark\:text-red-300{
  --tw-text-opacity: 1;
  color: rgba(252, 165, 165, 1);
  color: rgba(252, 165, 165, var(--tw-text-opacity, 1));
}
.dark .dark\:text-red-400{
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, 1);
  color: rgba(248, 113, 113, var(--tw-text-opacity, 1));
}
.dark .dark\:text-white{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity, 1));
}
.dark .dark\:hover\:bg-blue-900\/30:hover{
  background-color: rgba(30, 58, 138, 0.3);
}
.dark .dark\:hover\:bg-blue-900\/50:hover{
  background-color: rgba(30, 58, 138, 0.5);
}
.dark .dark\:hover\:bg-gray-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(75, 85, 99, 1);
  background-color: rgba(75, 85, 99, var(--tw-bg-opacity, 1));
}
.dark .dark\:hover\:bg-gray-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(55, 65, 81, 1);
  background-color: rgba(55, 65, 81, var(--tw-bg-opacity, 1));
}
.dark .dark\:hover\:bg-gray-800:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(31, 41, 55, 1);
  background-color: rgba(31, 41, 55, var(--tw-bg-opacity, 1));
}
.dark .dark\:hover\:bg-gray-900:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(17, 24, 39, 1);
  background-color: rgba(17, 24, 39, var(--tw-bg-opacity, 1));
}
.dark .dark\:hover\:bg-orange-900\/50:hover{
  background-color: rgba(124, 45, 18, 0.5);
}
.dark .dark\:hover\:bg-purple-900\/50:hover{
  background-color: rgba(88, 28, 135, 0.5);
}
.dark .dark\:hover\:bg-red-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(185, 28, 28, 1);
  background-color: rgba(185, 28, 28, var(--tw-bg-opacity, 1));
}
.dark .hover\:dark\:bg-gray-900\/75:hover{
  background-color: rgba(17, 24, 39, 0.75);
}
.dark .dark\:hover\:text-blue-300:hover{
  --tw-text-opacity: 1;
  color: rgba(147, 197, 253, 1);
  color: rgba(147, 197, 253, var(--tw-text-opacity, 1));
}
.dark .dark\:hover\:text-gray-200:hover{
  --tw-text-opacity: 1;
  color: rgba(229, 231, 235, 1);
  color: rgba(229, 231, 235, var(--tw-text-opacity, 1));
}
.dark .dark\:hover\:text-gray-300:hover{
  --tw-text-opacity: 1;
  color: rgba(209, 213, 219, 1);
  color: rgba(209, 213, 219, var(--tw-text-opacity, 1));
}
.dark .dark\:hover\:text-gray-400:hover{
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity, 1));
}
.dark .dark\:hover\:text-neutral-300:hover{
  --tw-text-opacity: 1;
  color: rgba(212, 212, 212, 1);
  color: rgba(212, 212, 212, var(--tw-text-opacity, 1));
}
.dark .dark\:focus\:ring-offset-gray-800:focus{
  --tw-ring-offset-color: #1f2937;
}
@media (min-width: 640px){
  .sm\:fixed{
    position: fixed;
  }
  .sm\:order-2{
    order: 2;
  }
  .sm\:col-span-2{
    grid-column: span 2 / span 2;
  }
  .sm\:mx-0{
    margin-left: 0px;
    margin-right: 0px;
  }
  .sm\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }
  .sm\:my-8{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .sm\:mb-0{
    margin-bottom: 0px;
  }
  .sm\:ml-3{
    margin-left: 0.75rem;
  }
  .sm\:ml-4{
    margin-left: 1rem;
  }
  .sm\:mt-0{
    margin-top: 0px;
  }
  .sm\:mt-16{
    margin-top: 4rem;
  }
  .sm\:block{
    display: block;
  }
  .sm\:inline{
    display: inline;
  }
  .sm\:flex{
    display: flex;
  }
  .sm\:table-cell{
    display: table-cell;
  }
  .sm\:hidden{
    display: none;
  }
  .sm\:h-10{
    height: 2.5rem;
  }
  .sm\:h-screen{
    height: 100vh;
  }
  .sm\:w-10{
    width: 2.5rem;
  }
  .sm\:w-2\/3{
    width: 66.666667%;
  }
  .sm\:w-96{
    width: 24rem;
  }
  .sm\:w-\[300px\]{
    width: 300px;
  }
  .sm\:w-auto{
    width: auto;
  }
  .sm\:w-full{
    width: 100%;
  }
  .sm\:max-w-2xl{
    max-width: 42rem;
  }
  .sm\:max-w-4xl{
    max-width: 56rem;
  }
  .sm\:max-w-lg{
    max-width: 32rem;
  }
  .sm\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sm\:flex-row{
    flex-direction: row;
  }
  .sm\:flex-row-reverse{
    flex-direction: row-reverse;
  }
  .sm\:items-start{
    align-items: flex-start;
  }
  .sm\:items-center{
    align-items: center;
  }
  .sm\:justify-between{
    justify-content: space-between;
  }
  .sm\:overflow-scroll{
    overflow: scroll;
  }
  .sm\:rounded-lg{
    border-radius: 0.5rem;
  }
  .sm\:rounded-md{
    border-radius: 0.375rem;
  }
  .sm\:p-0{
    padding: 0px;
  }
  .sm\:p-6{
    padding: 1.5rem;
  }
  .sm\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .sm\:pb-4{
    padding-bottom: 1rem;
  }
  .sm\:pl-\[300px\]{
    padding-left: 300px;
  }
  .sm\:text-left{
    text-align: left;
  }
  .sm\:align-middle{
    vertical-align: middle;
  }
  .sm\:text-sm{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
@media (min-width: 768px){
  .md\:col-span-2{
    grid-column: span 2 / span 2;
  }
  .md\:my-6{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .md\:inline{
    display: inline;
  }
  .md\:flex{
    display: flex;
  }
  .md\:hidden{
    display: none;
  }
  .md\:min-h-screen{
    min-height: 100vh;
  }
  .md\:w-1\/2{
    width: 50%;
  }
  .md\:w-1\/5{
    width: 20%;
  }
  .md\:w-3\/4{
    width: 75%;
  }
  .md\:w-4\/5{
    width: 80%;
  }
  .md\:w-56{
    width: 14rem;
  }
  .md\:w-80{
    width: 20rem;
  }
  .md\:max-w-\[300px\]{
    max-width: 300px;
  }
  .md\:max-w-md{
    max-width: 28rem;
  }
  .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\:flex-row{
    flex-direction: row;
  }
  .md\:items-center{
    align-items: center;
  }
  .md\:justify-between{
    justify-content: space-between;
  }
  .md\:gap-6{
    gap: 1.5rem;
  }
  .md\:bg-left{
    background-position: left;
  }
  .md\:p-12{
    padding: 3rem;
  }
  .md\:px-20{
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .md\:py-12{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .md\:py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .md\:pb-0{
    padding-bottom: 0px;
  }
  .md\:text-right{
    text-align: right;
  }
  .md\:text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
@media (min-width: 1024px){
  .lg\:absolute{
    position: absolute;
  }
  .lg\:right-0{
    right: 0px;
  }
  .lg\:col-span-4{
    grid-column: span 4 / span 4;
  }
  .lg\:col-span-8{
    grid-column: span 8 / span 8;
  }
  .lg\:my-24{
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
  .lg\:-mt-4{
    margin-top: -1rem;
  }
  .lg\:mt-2{
    margin-top: 0.5rem;
  }
  .lg\:block{
    display: block;
  }
  .lg\:flex{
    display: flex;
  }
  .lg\:w-1\/2{
    width: 50%;
  }
  .lg\:w-1\/3{
    width: 33.333333%;
  }
  .lg\:w-1\/4{
    width: 25%;
  }
  .lg\:w-1\/6{
    width: 16.666667%;
  }
  .lg\:w-3\/4{
    width: 75%;
  }
  .lg\:max-w-4xl{
    max-width: 56rem;
  }
  .lg\:flex-1{
    flex: 1 1 0%;
  }
  .lg\:flex-grow{
    flex-grow: 1;
  }
  .lg\:grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .lg\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:justify-start{
    justify-content: flex-start;
  }
  .lg\:gap-48{
    gap: 12rem;
  }
  .lg\:rounded{
    border-radius: 0.25rem;
  }
  .lg\:bg-center{
    background-position: center;
  }
  .lg\:p-0{
    padding: 0px;
  }
  .lg\:p-10{
    padding: 2.5rem;
  }
  .lg\:p-2{
    padding: 0.5rem;
  }
  .lg\:p-4{
    padding: 1rem;
  }
  .lg\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }
  .lg\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lg\:px-40{
    padding-left: 10rem;
    padding-right: 10rem;
  }
  .lg\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .lg\:py-12{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .lg\:pr-4{
    padding-right: 1rem;
  }
  .lg\:text-right{
    text-align: right;
  }
  .lg\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .lg\:hover\:bg-primary-50:hover{
    --tw-bg-opacity: 1;
    background-color: rgba(254, 242, 242, 1);
    background-color: rgba(254, 242, 242, var(--tw-bg-opacity, 1));
  }
}
@media (min-width: 1280px){
  .xl\:w-2\/3{
    width: 66.666667%;
  }
  .xl\:px-56{
    padding-left: 14rem;
    padding-right: 14rem;
  }
}
