/*!
 * Shortcut.css v2.0.0
 * A modern, lightweight utility-first CSS framework
 * github.com/moumen-soliman/shortcut.css
 * Licensed under MIT
 */

/* ==========================================================================
   CSS Custom Properties (Variables)
   ========================================================================== */

:root {
  /* Typography */
  --main-font: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --color: inherit;
  --color-2: inherit;
  --headline-color: inherit;
  --headline-weight: 700;
  --paragraph-color: inherit;
  --paragraph-size: 1rem;
  --span-color: inherit;
  --span-size: 1rem;
  
  /* Spacing */
  --padding-values: 0;
  --margin-values: 0;
  --section-padding-values: 0;
  --div-content-padding-values: 0;

  /* Custom Properties for Utility Classes */
  --custom-margin: 0;
  --custom-padding: 0;
  --custom-width: auto;
  --custom-min-width: auto;
  --custom-max-width: none;
  --custom-bg: transparent;
  --custom-background-attachment: scroll;
  --custom-bg-pos: 0 0;
  --custom-bg-size: auto;
  --custom-border: none;
  --custom-box-shadow: none;
  --custom-column-count: auto;
  --custom-filter: none;
  --custom-font-size: inherit;
  --custom-height: auto;
  --custom-max-height: none;
  --custom-min-height: auto;
  --custom-letter-spacing: normal;
  --custom-line-height: normal;
  --custom-list-style: disc;
  --custom-outline: none;
  --custom-perspective: none;
  --custom-quotes: auto;
  --custom-tab-size: 8;
  --custom-txt-dec-color: currentColor;
  --custom-txt-shadow: none;
  --custom-txt-transform: none;
  --custom-transition: all 0.3s ease;
  --custom-v-align: baseline;
  --custom-word-spacing: normal;
  --custom-z-index: auto;
  --custom-text-indent: 0;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

* {
  font-family: var(--main-font);
}

section {
  padding: var(--section-padding-values);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--headline-weight);
  color: var(--headline-color);
}

p {
  font-size: var(--paragraph-size);
  color: var(--paragraph-color);
}

span {
  font-size: var(--span-size);
  color: var(--span-color);
}

.content {
  padding: var(--div-content-padding-values);
}

/* ==========================================================================
   Alignment Utilities
   ========================================================================== */

/* Align Content */
.align-inherit { align-content: inherit !important; }
.align-unset { align-content: unset !important; }
.align-center { align-content: center !important; }
.align-start { align-content: start !important; }
.align-end { align-content: end !important; }
.align-left { align-content: left !important; }
.align-right { align-content: right !important; }
.align-baseline { align-content: baseline !important; }
.align-first-baseline { align-content: first baseline !important; }
.align-last-baseline { align-content: last baseline !important; }
.align-stretch { align-content: stretch !important; }
.align-space-between { align-content: space-between !important; }
.align-space-around { align-content: space-around !important; }
.align-space-evenly { align-content: space-evenly !important; }

/* Align Items */
.align-items-inherit { align-items: inherit !important; }
.align-items-unset { align-items: unset !important; }
.align-items-center { align-items: center !important; }
.align-items-start { align-items: start !important; }
.align-items-end { align-items: end !important; }
.align-items-left { align-items: left !important; }
.align-items-right { align-items: right !important; }
.align-items-baseline { align-items: baseline !important; }
.align-items-first-baseline { align-items: first baseline !important; }
.align-items-last-baseline { align-items: last baseline !important; }
.align-items-stretch { align-items: stretch !important; }

/* Align Self */
.align-self-inherit { align-self: inherit !important; }
.align-self-unset { align-self: unset !important; }
.align-self-center { align-self: center !important; }
.align-self-start { align-self: start !important; }
.align-self-end { align-self: end !important; }
.align-self-left { align-self: left !important; }
.align-self-right { align-self: right !important; }
.align-self-baseline { align-self: baseline !important; }
.align-self-first-baseline { align-self: first baseline !important; }
.align-self-last-baseline { align-self: last baseline !important; }
.align-self-stretch { align-self: stretch !important; }

/* Global */
.all-inherit { all: inherit !important; }
.all-unset { all: unset !important; }

/* ==========================================================================
   Background Utilities
   ========================================================================== */

.bg-custom { background: var(--custom-bg) !important; }
.bg-transparent { background-color: transparent !important; }
.bg-inherit { background-color: inherit !important; }

/* Background Attachment */
.bg-attachment-custom { background-attachment: var(--custom-background-attachment) !important; }
.bg-attachment-scroll { background-attachment: scroll !important; }
.bg-attachment-fixed { background-attachment: fixed !important; }
.bg-attachment-local { background-attachment: local !important; }
.bg-attachment-inherit { background-attachment: inherit !important; }

/* Background Blend Mode */
.bg-blend-normal { background-blend-mode: normal !important; }
.bg-blend-multiply { background-blend-mode: multiply !important; }
.bg-blend-screen { background-blend-mode: screen !important; }
.bg-blend-overlay { background-blend-mode: overlay !important; }
.bg-blend-darken { background-blend-mode: darken !important; }
.bg-blend-lighten { background-blend-mode: lighten !important; }
.bg-blend-color-dodge { background-blend-mode: color-dodge !important; }
.bg-blend-color-burn { background-blend-mode: color-burn !important; }
.bg-blend-hard-light { background-blend-mode: hard-light !important; }
.bg-blend-soft-light { background-blend-mode: soft-light !important; }
.bg-blend-difference { background-blend-mode: difference !important; }
.bg-blend-exclusion { background-blend-mode: exclusion !important; }
.bg-blend-hue { background-blend-mode: hue !important; }
.bg-blend-saturation { background-blend-mode: saturation !important; }
.bg-blend-color { background-blend-mode: color !important; }
.bg-blend-luminosity { background-blend-mode: luminosity !important; }

/* Background Clip */
.bg-clip-border-box { background-clip: border-box !important; }
.bg-clip-padding-box { background-clip: padding-box !important; }
.bg-clip-content-box { background-clip: content-box !important; }
.bg-clip-text { background-clip: text !important; -webkit-background-clip: text !important; }
.bg-clip-inherit { background-clip: inherit !important; }

/* Background Origin */
.bg-origin-border-box { background-origin: border-box !important; }
.bg-origin-padding-box { background-origin: padding-box !important; }
.bg-origin-content-box { background-origin: content-box !important; }
.bg-origin-inherit { background-origin: inherit !important; }

/* Background Position */
.bg-pos-custom { background-position: var(--custom-bg-pos) !important; }
.bg-pos-top { background-position: top !important; }
.bg-pos-right { background-position: right !important; }
.bg-pos-bottom { background-position: bottom !important; }
.bg-pos-left { background-position: left !important; }
.bg-pos-center { background-position: center !important; }
.bg-pos-left-top { background-position: left top !important; }
.bg-pos-left-center { background-position: left center !important; }
.bg-pos-left-bottom { background-position: left bottom !important; }
.bg-pos-right-top { background-position: right top !important; }
.bg-pos-right-center { background-position: right center !important; }
.bg-pos-right-bottom { background-position: right bottom !important; }
.bg-pos-center-top { background-position: center top !important; }
.bg-pos-center-center { background-position: center center !important; }
.bg-pos-center-bottom { background-position: center bottom !important; }

/* Background Repeat */
.bg-repeat { background-repeat: repeat !important; }
.bg-no-repeat { background-repeat: no-repeat !important; }
.bg-repeat-y { background-repeat: repeat-y !important; }
.bg-repeat-x { background-repeat: repeat-x !important; }
.bg-repeat-space { background-repeat: space !important; }
.bg-repeat-round { background-repeat: round !important; }

/* Background Size */
.bg-size-custom { background-size: var(--custom-bg-size) !important; }
.bg-size-auto { background-size: auto !important; }
.bg-size-cover { background-size: cover !important; }
.bg-size-contain { background-size: contain !important; }
.bg-size-inherit { background-size: inherit !important; }

/* ==========================================================================
   Border Utilities
   ========================================================================== */

.border-custom { border: var(--custom-border) !important; }
.border { border: 1px solid #d1d5db !important; }
.border-0 { border: 0 !important; }
.border-top { border-top: 1px solid #d1d5db !important; }
.border-bottom { border-bottom: 1px solid #d1d5db !important; }
.border-right { border-right: 1px solid #d1d5db !important; }
.border-left { border-left: 1px solid #d1d5db !important; }
.border-top-0 { border-top: 0 !important; }
.border-bottom-0 { border-bottom: 0 !important; }
.border-right-0 { border-right: 0 !important; }
.border-left-0 { border-left: 0 !important; }

/* Border Collapse */
.border-collapse { border-collapse: collapse !important; }
.border-separate { border-collapse: separate !important; }

/* Border Style */
.border-style-solid { border-style: solid !important; }
.border-style-dotted { border-style: dotted !important; }
.border-style-dashed { border-style: dashed !important; }
.border-style-double { border-style: double !important; }
.border-style-groove { border-style: groove !important; }
.border-style-ridge { border-style: ridge !important; }
.border-style-inset { border-style: inset !important; }
.border-style-outset { border-style: outset !important; }
.border-style-none { border-style: none !important; }

/* Border Width */
.border-width-medium { border-width: medium !important; }
.border-width-thin { border-width: thin !important; }
.border-width-thick { border-width: thick !important; }
.border-width-1 { border-width: 1px !important; }
.border-width-2 { border-width: 2px !important; }
.border-width-4 { border-width: 4px !important; }
.border-width-8 { border-width: 8px !important; }

/* Border Radius */
.border-radius-circle { border-radius: 50% !important; }
.border-radius-25 { border-radius: 25px !important; }
.border-radius-20 { border-radius: 20px !important; }
.border-radius-15 { border-radius: 15px !important; }
.border-radius-10 { border-radius: 10px !important; }
.border-radius-5 { border-radius: 5px !important; }
.border-radius-0 { border-radius: 0 !important; }
.border-radius-full { border-radius: 9999px !important; }
.border-radius-top-right-left { border-radius: 0 7px 0 7px !important; }
.border-radius-top-left-right { border-radius: 7px 0 7px 0 !important; }

/* ==========================================================================
   Box Shadow Utilities
   ========================================================================== */

.box-shadow-custom { box-shadow: var(--custom-box-shadow) !important; }
.box-shadow-none { box-shadow: none !important; }
.box-shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; }
.box-shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important; }
.box-shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important; }
.box-shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; }
.box-shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important; }
.box-shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; }
.box-shadow-inner { box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important; }
.box-shadow-light { box-shadow: 4px 5px 5px rgba(0, 0, 0, 0.21) !important; }
.box-shadow-lighter { box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07) !important; }

/* ==========================================================================
   Box Sizing Utilities
   ========================================================================== */

.box-sizing-content { box-sizing: content-box !important; }
.box-sizing-border { box-sizing: border-box !important; }

/* ==========================================================================
   Clear Utilities
   ========================================================================== */

.clear-none { clear: none !important; }
.clear-right { clear: right !important; }
.clear-left { clear: left !important; }
.clear-both { clear: both !important; }

/* ==========================================================================
   Cursor Utilities
   ========================================================================== */

.cursor-alias { cursor: alias !important; }
.cursor-all-scroll { cursor: all-scroll !important; }
.cursor-auto { cursor: auto !important; }
.cursor-cell { cursor: cell !important; }
.cursor-context-menu { cursor: context-menu !important; }
.cursor-col-resize { cursor: col-resize !important; }
.cursor-copy { cursor: copy !important; }
.cursor-crosshair { cursor: crosshair !important; }
.cursor-default { cursor: default !important; }
.cursor-e-resize { cursor: e-resize !important; }
.cursor-ew-resize { cursor: ew-resize !important; }
.cursor-grab { cursor: grab !important; }
.cursor-grabbing { cursor: grabbing !important; }
.cursor-help { cursor: help !important; }
.cursor-move { cursor: move !important; }
.cursor-n-resize { cursor: n-resize !important; }
.cursor-ne-resize { cursor: ne-resize !important; }
.cursor-nesw-resize { cursor: nesw-resize !important; }
.cursor-ns-resize { cursor: ns-resize !important; }
.cursor-nw-resize { cursor: nw-resize !important; }
.cursor-nwse-resize { cursor: nwse-resize !important; }
.cursor-no-drop { cursor: no-drop !important; }
.cursor-none { cursor: none !important; }
.cursor-not-allowed { cursor: not-allowed !important; }
.cursor-pointer { cursor: pointer !important; }
.cursor-progress { cursor: progress !important; }
.cursor-row-resize { cursor: row-resize !important; }
.cursor-s-resize { cursor: s-resize !important; }
.cursor-se-resize { cursor: se-resize !important; }
.cursor-sw-resize { cursor: sw-resize !important; }
.cursor-text { cursor: text !important; }
.cursor-vertical-text { cursor: vertical-text !important; }
.cursor-w-resize { cursor: w-resize !important; }
.cursor-wait { cursor: wait !important; }
.cursor-zoom-in { cursor: zoom-in !important; }
.cursor-zoom-out { cursor: zoom-out !important; }

/* ==========================================================================
   Direction Utilities
   ========================================================================== */

.direction-rtl { direction: rtl !important; }
.direction-ltr { direction: ltr !important; }

/* ==========================================================================
   Display Utilities
   ========================================================================== */

.display-inline { display: inline !important; }
.display-block { display: block !important; }
.display-flex { display: flex !important; }
.display-inline-block { display: inline-block !important; }
.display-inline-flex { display: inline-flex !important; }
.display-grid { display: grid !important; }
.display-inline-grid { display: inline-grid !important; }
.display-inline-table { display: inline-table !important; }
.display-list-item { display: list-item !important; }
.display-run-in { display: run-in !important; }
.display-table { display: table !important; }
.display-table-caption { display: table-caption !important; }
.display-table-column-group { display: table-column-group !important; }
.display-table-header-group { display: table-header-group !important; }
.display-table-footer-group { display: table-footer-group !important; }
.display-table-row-group { display: table-row-group !important; }
.display-table-cell { display: table-cell !important; }
.display-table-column { display: table-column !important; }
.display-table-row { display: table-row !important; }
.display-none { display: none !important; }
.display-contents { display: contents !important; }

/* ==========================================================================
   Flexbox Utilities
   ========================================================================== */

/* Flex Direction */
.flex-row { flex-direction: row !important; }
.flex-row-reverse { flex-direction: row-reverse !important; }
.flex-column { flex-direction: column !important; }
.flex-column-reverse { flex-direction: column-reverse !important; }

/* Flex Wrap */
.flex-wrap { flex-wrap: wrap !important; }
.flex-wrap-reverse { flex-wrap: wrap-reverse !important; }
.flex-nowrap { flex-wrap: nowrap !important; }

/* Flex Grow */
.flex-grow-0 { flex-grow: 0 !important; }
.flex-grow-1 { flex-grow: 1 !important; }
.flex-grow { flex-grow: 1 !important; }

/* Flex Shrink */
.flex-shrink-0 { flex-shrink: 0 !important; }
.flex-shrink-1 { flex-shrink: 1 !important; }
.flex-shrink { flex-shrink: 1 !important; }

/* Flex Basis */
.flex-basis-auto { flex-basis: auto !important; }
.flex-basis-0 { flex-basis: 0 !important; }
.flex-basis-full { flex-basis: 100% !important; }

/* Flex Shorthand */
.flex-1 { flex: 1 1 0% !important; }
.flex-auto { flex: 1 1 auto !important; }
.flex-initial { flex: 0 1 auto !important; }
.flex-none { flex: none !important; }

/* ==========================================================================
   Grid Utilities
   ========================================================================== */

/* Grid Template Columns */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; }
.grid-cols-none { grid-template-columns: none !important; }

/* Grid Template Rows */
.grid-rows-1 { grid-template-rows: repeat(1, minmax(0, 1fr)) !important; }
.grid-rows-2 { grid-template-rows: repeat(2, minmax(0, 1fr)) !important; }
.grid-rows-3 { grid-template-rows: repeat(3, minmax(0, 1fr)) !important; }
.grid-rows-4 { grid-template-rows: repeat(4, minmax(0, 1fr)) !important; }
.grid-rows-5 { grid-template-rows: repeat(5, minmax(0, 1fr)) !important; }
.grid-rows-6 { grid-template-rows: repeat(6, minmax(0, 1fr)) !important; }
.grid-rows-none { grid-template-rows: none !important; }

/* Grid Column Span */
.col-span-1 { grid-column: span 1 / span 1 !important; }
.col-span-2 { grid-column: span 2 / span 2 !important; }
.col-span-3 { grid-column: span 3 / span 3 !important; }
.col-span-4 { grid-column: span 4 / span 4 !important; }
.col-span-5 { grid-column: span 5 / span 5 !important; }
.col-span-6 { grid-column: span 6 / span 6 !important; }
.col-span-full { grid-column: 1 / -1 !important; }

/* Grid Row Span */
.row-span-1 { grid-row: span 1 / span 1 !important; }
.row-span-2 { grid-row: span 2 / span 2 !important; }
.row-span-3 { grid-row: span 3 / span 3 !important; }
.row-span-4 { grid-row: span 4 / span 4 !important; }
.row-span-full { grid-row: 1 / -1 !important; }

/* Grid Gap */
.gap-0 { gap: 0 !important; }
.gap-1 { gap: 0.25rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 0.75rem !important; }
.gap-4 { gap: 1rem !important; }
.gap-5 { gap: 1.25rem !important; }
.gap-6 { gap: 1.5rem !important; }
.gap-8 { gap: 2rem !important; }
.gap-10 { gap: 2.5rem !important; }
.gap-12 { gap: 3rem !important; }
.gap-16 { gap: 4rem !important; }

/* ==========================================================================
   Filter Utilities
   ========================================================================== */

.filter-custom { filter: var(--custom-filter) !important; }
.filter-none { filter: none !important; }
.filter-blur { filter: blur(3px) !important; }
.filter-blur-sm { filter: blur(4px) !important; }
.filter-blur-md { filter: blur(8px) !important; }
.filter-blur-lg { filter: blur(12px) !important; }
.filter-brightness { filter: brightness(200%) !important; }
.filter-brightness-50 { filter: brightness(50%) !important; }
.filter-brightness-75 { filter: brightness(75%) !important; }
.filter-brightness-125 { filter: brightness(125%) !important; }
.filter-brightness-150 { filter: brightness(150%) !important; }
.filter-grayscale { filter: grayscale(100%) !important; }
.filter-grayscale-50 { filter: grayscale(50%) !important; }
.filter-hue-rotate { filter: hue-rotate(90deg) !important; }
.filter-hue-rotate-180 { filter: hue-rotate(180deg) !important; }
.filter-invert { filter: invert(100%) !important; }
.filter-invert-50 { filter: invert(50%) !important; }
.filter-sepia { filter: sepia(100%) !important; }
.filter-sepia-50 { filter: sepia(50%) !important; }
.filter-saturate { filter: saturate(200%) !important; }
.filter-saturate-50 { filter: saturate(50%) !important; }

/* ==========================================================================
   Float Utilities
   ========================================================================== */

.float-none { float: none !important; }
.float-right { float: right !important; }
.float-left { float: left !important; }

/* ==========================================================================
   Font Utilities
   ========================================================================== */

/* Font Size */
.font-size-custom { font-size: var(--custom-font-size) !important; }
.font-size-xs { font-size: 0.75rem !important; }
.font-size-sm { font-size: 0.875rem !important; }
.font-size-base { font-size: 1rem !important; }
.font-size-lg { font-size: 1.125rem !important; }
.font-size-xl { font-size: 1.25rem !important; }
.font-size-2xl { font-size: 1.5rem !important; }
.font-size-3xl { font-size: 1.875rem !important; }
.font-size-4xl { font-size: 2.25rem !important; }
.font-size-5xl { font-size: 3rem !important; }
.font-size-6xl { font-size: 3.75rem !important; }
.font-size-7xl { font-size: 4.5rem !important; }
.font-size-8xl { font-size: 6rem !important; }
.font-size-9xl { font-size: 8rem !important; }

/* Legacy pixel sizes for compatibility */
.font-size-8 { font-size: 8px !important; }
.font-size-10 { font-size: 10px !important; }
.font-size-12 { font-size: 12px !important; }
.font-size-14 { font-size: 14px !important; }
.font-size-16 { font-size: 16px !important; }
.font-size-18 { font-size: 18px !important; }
.font-size-20 { font-size: 20px !important; }
.font-size-24 { font-size: 24px !important; }
.font-size-28 { font-size: 28px !important; }
.font-size-30 { font-size: 30px !important; }
.font-size-32 { font-size: 32px !important; }
.font-size-40 { font-size: 40px !important; }
.font-size-48 { font-size: 48px !important; }
.font-size-50 { font-size: 50px !important; }
.font-size-64 { font-size: 64px !important; }

/* Font Style */
.font-style-normal { font-style: normal !important; }
.font-style-italic { font-style: italic !important; }
.font-style-oblique { font-style: oblique !important; }
.font-style-inherit { font-style: inherit !important; }

/* Font Weight */
.font-weight-thin { font-weight: 100 !important; }
.font-weight-extralight { font-weight: 200 !important; }
.font-weight-light { font-weight: 300 !important; }
.font-weight-normal { font-weight: 400 !important; }
.font-weight-medium { font-weight: 500 !important; }
.font-weight-semibold { font-weight: 600 !important; }
.font-weight-bold { font-weight: 700 !important; }
.font-weight-extrabold { font-weight: 800 !important; }
.font-weight-black { font-weight: 900 !important; }

/* Legacy numeric weights */
.font-weight-100 { font-weight: 100 !important; }
.font-weight-200 { font-weight: 200 !important; }
.font-weight-300 { font-weight: 300 !important; }
.font-weight-400 { font-weight: 400 !important; }
.font-weight-500 { font-weight: 500 !important; }
.font-weight-600 { font-weight: 600 !important; }
.font-weight-700 { font-weight: 700 !important; }
.font-weight-800 { font-weight: 800 !important; }
.font-weight-900 { font-weight: 900 !important; }

/* ==========================================================================
   Height Utilities
   ========================================================================== */

.height-custom { height: var(--custom-height) !important; }
.max-height-custom { max-height: var(--custom-max-height) !important; }
.min-height-custom { min-height: var(--custom-min-height) !important; }

.height-auto { height: auto !important; }
.height-full { height: 100% !important; }
.height-screen { height: 100vh !important; }
.height-min { height: -moz-min-content !important; height: min-content !important; }
.height-max { height: -moz-max-content !important; height: max-content !important; }
.height-fit { height: -moz-fit-content !important; height: fit-content !important; }

/* Numeric Heights */
.height-0 { height: 0 !important; }
.height-10 { height: 10px !important; }
.height-20 { height: 20px !important; }
.height-30 { height: 30px !important; }
.height-40 { height: 40px !important; }
.height-50 { height: 50px !important; }
.height-60 { height: 60px !important; }
.height-70 { height: 70px !important; }
.height-80 { height: 80px !important; }
.height-90 { height: 90px !important; }
.height-100 { height: 100px !important; }

/* Min/Max Heights */
.min-height-0 { min-height: 0 !important; }
.min-height-full { min-height: 100% !important; }
.min-height-screen { min-height: 100vh !important; }
.max-height-full { max-height: 100% !important; }
.max-height-screen { max-height: 100vh !important; }

/* ==========================================================================
   Justify Content Utilities
   ========================================================================== */

.justify-content-flex-start { justify-content: flex-start !important; }
.justify-content-flex-end { justify-content: flex-end !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-space-between { justify-content: space-between !important; }
.justify-content-space-around { justify-content: space-around !important; }
.justify-content-space-evenly { justify-content: space-evenly !important; }
.justify-content-start { justify-content: start !important; }
.justify-content-end { justify-content: end !important; }
.justify-content-left { justify-content: left !important; }
.justify-content-right { justify-content: right !important; }

/* Justify Items */
.justify-items-start { justify-items: start !important; }
.justify-items-end { justify-items: end !important; }
.justify-items-center { justify-items: center !important; }
.justify-items-stretch { justify-items: stretch !important; }

/* Justify Self */
.justify-self-auto { justify-self: auto !important; }
.justify-self-start { justify-self: start !important; }
.justify-self-end { justify-self: end !important; }
.justify-self-center { justify-self: center !important; }
.justify-self-stretch { justify-self: stretch !important; }

/* ==========================================================================
   Margin Utilities
   ========================================================================== */

.margin-custom { margin: var(--custom-margin) !important; }
.margin-auto { margin: auto !important; }
.margin-0 { margin: 0 !important; }
.margin-off { margin: 0 !important; }

/* Directional Margins */
.margin-top-off { margin-top: 0 !important; }
.margin-bottom-off { margin-bottom: 0 !important; }
.margin-left-off { margin-left: 0 !important; }
.margin-right-off { margin-right: 0 !important; }
.margin-top-auto { margin-top: auto !important; }
.margin-bottom-auto { margin-bottom: auto !important; }
.margin-left-auto { margin-left: auto !important; }
.margin-right-auto { margin-right: auto !important; }

/* Numeric Margins */
.margin-1 { margin: 0.25rem !important; }
.margin-2 { margin: 0.5rem !important; }
.margin-3 { margin: 0.75rem !important; }
.margin-4 { margin: 1rem !important; }
.margin-5 { margin: 1.25rem !important; }
.margin-6 { margin: 1.5rem !important; }
.margin-8 { margin: 2rem !important; }
.margin-10 { margin: 2.5rem !important; }
.margin-12 { margin: 3rem !important; }
.margin-16 { margin: 4rem !important; }

/* Legacy pixel margins */
.margin-10px { margin: 10px !important; }
.margin-20px { margin: 20px !important; }
.margin-30px { margin: 30px !important; }
.margin-40px { margin: 40px !important; }
.margin-50px { margin: 50px !important; }
.margin-60px { margin: 60px !important; }
.margin-70px { margin: 70px !important; }
.margin-80px { margin: 80px !important; }
.margin-90px { margin: 90px !important; }

/* ==========================================================================
   Padding Utilities
   ========================================================================== */

.padding-custom { padding: var(--custom-padding) !important; }
.padding-0 { padding: 0 !important; }
.padding-off { padding: 0 !important; }

/* Directional Padding */
.padding-top-off { padding-top: 0 !important; }
.padding-bottom-off { padding-bottom: 0 !important; }
.padding-left-off { padding-left: 0 !important; }
.padding-right-off { padding-right: 0 !important; }

/* Numeric Padding */
.padding-1 { padding: 0.25rem !important; }
.padding-2 { padding: 0.5rem !important; }
.padding-3 { padding: 0.75rem !important; }
.padding-4 { padding: 1rem !important; }
.padding-5 { padding: 1.25rem !important; }
.padding-6 { padding: 1.5rem !important; }
.padding-8 { padding: 2rem !important; }
.padding-10 { padding: 2.5rem !important; }
.padding-12 { padding: 3rem !important; }
.padding-16 { padding: 4rem !important; }

/* Legacy pixel padding */
.padding-10px { padding: 10px !important; }
.padding-20px { padding: 20px !important; }
.padding-30px { padding: 30px !important; }
.padding-40px { padding: 40px !important; }
.padding-50px { padding: 50px !important; }
.padding-60px { padding: 60px !important; }
.padding-70px { padding: 70px !important; }
.padding-80px { padding: 80px !important; }
.padding-90px { padding: 90px !important; }

/* ==========================================================================
   Width Utilities
   ========================================================================== */

.width-custom { width: var(--custom-width) !important; }
.min-width-custom { min-width: var(--custom-min-width) !important; }
.max-width-custom { max-width: var(--custom-max-width) !important; }

.width-auto { width: auto !important; }
.width-full { width: 100% !important; }
.width-screen { width: 100vw !important; }
.width-min { width: -moz-min-content !important; width: min-content !important; }
.width-max { width: -moz-max-content !important; width: max-content !important; }
.width-fit { width: -moz-fit-content !important; width: fit-content !important; }

/* Percentage Widths */
.width-per-100 { width: 100% !important; }
.width-per-90 { width: 90% !important; }
.width-per-75 { width: 75% !important; }
.width-per-50 { width: 50% !important; }
.width-per-33 { width: 33.333333% !important; }
.width-per-25 { width: 25% !important; }
.width-per-20 { width: 20% !important; }

/* Numeric Widths */
.width-10 { width: 10px !important; }
.width-20 { width: 20px !important; }
.width-30 { width: 30px !important; }
.width-40 { width: 40px !important; }
.width-50 { width: 50px !important; }
.width-60 { width: 60px !important; }
.width-70 { width: 70px !important; }
.width-80 { width: 80px !important; }
.width-90 { width: 90px !important; }
.width-100 { width: 100px !important; }
.width-120 { width: 120px !important; }
.width-150 { width: 150px !important; }
.width-170 { width: 170px !important; }
.width-200 { width: 200px !important; }
.width-250 { width: 250px !important; }
.width-300 { width: 300px !important; }

/* ==========================================================================
   Opacity Utilities
   ========================================================================== */

.opacity-0 { opacity: 0 !important; }
.opacity-1 { opacity: 0.1 !important; }
.opacity-2 { opacity: 0.2 !important; }
.opacity-3 { opacity: 0.3 !important; }
.opacity-4 { opacity: 0.4 !important; }
.opacity-5 { opacity: 0.5 !important; }
.opacity-6 { opacity: 0.6 !important; }
.opacity-7 { opacity: 0.7 !important; }
.opacity-8 { opacity: 0.8 !important; }
.opacity-9 { opacity: 0.9 !important; }
.opacity-10 { opacity: 1 !important; }
.opacity-100 { opacity: 1 !important; }

/* ==========================================================================
   Overflow Utilities
   ========================================================================== */

.overflow-visible { overflow: visible !important; }
.overflow-hidden { overflow: hidden !important; }
.overflow-scroll { overflow: scroll !important; }
.overflow-auto { overflow: auto !important; }
.overflow-clip { overflow: clip !important; }
.overflow-x-visible { overflow-x: visible !important; }
.overflow-x-hidden { overflow-x: hidden !important; }
.overflow-x-scroll { overflow-x: scroll !important; }
.overflow-x-auto { overflow-x: auto !important; }
.overflow-x-clip { overflow-x: clip !important; }
.overflow-y-visible { overflow-y: visible !important; }
.overflow-y-hidden { overflow-y: hidden !important; }
.overflow-y-scroll { overflow-y: scroll !important; }
.overflow-y-auto { overflow-y: auto !important; }
.overflow-y-clip { overflow-y: clip !important; }

/* ==========================================================================
   Position Utilities
   ========================================================================== */

.pos-static { position: static !important; }
.pos-absolute { position: absolute !important; }
.pos-fixed { position: fixed !important; }
.pos-relative { position: relative !important; }
.pos-sticky { position: sticky !important; }
.pos-inherit { position: inherit !important; }

/* Position Values */
.top-0 { top: 0 !important; }
.right-0 { right: 0 !important; }
.bottom-0 { bottom: 0 !important; }
.left-0 { left: 0 !important; }
.inset-0 { top: 0 !important; right: 0 !important; bottom: 0 !important; left: 0 !important; }
.top-auto { top: auto !important; }
.right-auto { right: auto !important; }
.bottom-auto { bottom: auto !important; }
.left-auto { left: auto !important; }

/* ==========================================================================
   Text Utilities
   ========================================================================== */

/* Text Align */
.txt-left { text-align: left !important; }
.txt-right { text-align: right !important; }
.txt-center { text-align: center !important; }
.txt-justify { text-align: justify !important; }
.txt-start { text-align: start !important; }
.txt-end { text-align: end !important; }
.txt-inherit { text-align: inherit !important; }

/* Text Decoration */
.txt-dec-underline { text-decoration: underline !important; }
.txt-dec-overline { text-decoration: overline !important; }
.txt-dec-line-through { text-decoration: line-through !important; }
.txt-dec-none { text-decoration: none !important; }

/* Text Transform */
.txt-transform-cap { text-transform: capitalize !important; }
.txt-transform-upp { text-transform: uppercase !important; }
.txt-transform-low { text-transform: lowercase !important; }
.txt-transform-none { text-transform: none !important; }
.txt-transform-inherit { text-transform: inherit !important; }

/* Text Overflow */
.txt-overflow-clip { text-overflow: clip !important; }
.txt-overflow-ellipsis { text-overflow: ellipsis !important; }
.txt-truncate { overflow: hidden !important; text-overflow: ellipsis !important; white-space: nowrap !important; }

/* White Space */
.white-space-normal { white-space: normal !important; }
.white-space-nowrap { white-space: nowrap !important; }
.white-space-pre { white-space: pre !important; }
.white-space-pre-line { white-space: pre-line !important; }
.white-space-pre-wrap { white-space: pre-wrap !important; }
.white-space-inherit { white-space: inherit !important; }

/* Word Break */
.word-break-normal { word-break: normal !important; }
.word-break-all { word-break: break-all !important; }
.word-keep-all { word-break: keep-all !important; }
.word-break-word { overflow-wrap: break-word !important; }

/* Line Height */
.line-height-custom { line-height: var(--custom-line-height) !important; }
.line-height-none { line-height: 1 !important; }
.line-height-tight { line-height: 1.25 !important; }
.line-height-snug { line-height: 1.375 !important; }
.line-height-normal { line-height: 1.5 !important; }
.line-height-relaxed { line-height: 1.625 !important; }
.line-height-loose { line-height: 2 !important; }

/* Letter Spacing */
.letter-spacing-custom { letter-spacing: var(--custom-letter-spacing) !important; }
.letter-spacing-tighter { letter-spacing: -0.05em !important; }
.letter-spacing-tight { letter-spacing: -0.025em !important; }
.letter-spacing-normal { letter-spacing: 0 !important; }
.letter-spacing-wide { letter-spacing: 0.025em !important; }
.letter-spacing-wider { letter-spacing: 0.05em !important; }
.letter-spacing-widest { letter-spacing: 0.1em !important; }

/* ==========================================================================
   Transition Utilities
   ========================================================================== */

.transition { transition: all 0.3s ease !important; }
.transition-custom { transition: var(--custom-transition) !important; }
.transition-none { transition: none !important; }
.transition-all { transition: all 0.3s ease !important; }
.transition-colors { transition: color, background-color, border-color 0.3s ease !important; }
.transition-opacity { transition: opacity 0.3s ease !important; }
.transition-shadow { transition: box-shadow 0.3s ease !important; }
.transition-transform { transition: transform 0.3s ease !important; }
.transition-fast { transition: all 0.15s ease !important; }
.transition-slow { transition: all 0.5s ease !important; }

/* ==========================================================================
   Transform Utilities
   ========================================================================== */

.transform-custom { transform: var(--custom-txt-transform) !important; }
.transform-none { transform: none !important; }

/* Rotate */
.rotate-0 { transform: rotate(0deg) !important; }
.rotate-45 { transform: rotate(45deg) !important; }
.rotate-90 { transform: rotate(90deg) !important; }
.rotate-180 { transform: rotate(180deg) !important; }
.rotate-270 { transform: rotate(270deg) !important; }
.-rotate-45 { transform: rotate(-45deg) !important; }
.-rotate-90 { transform: rotate(-90deg) !important; }
.-rotate-180 { transform: rotate(-180deg) !important; }

/* Scale */
.scale-0 { transform: scale(0) !important; }
.scale-50 { transform: scale(0.5) !important; }
.scale-75 { transform: scale(0.75) !important; }
.scale-90 { transform: scale(0.9) !important; }
.scale-95 { transform: scale(0.95) !important; }
.scale-100 { transform: scale(1) !important; }
.scale-105 { transform: scale(1.05) !important; }
.scale-110 { transform: scale(1.1) !important; }
.scale-125 { transform: scale(1.25) !important; }
.scale-150 { transform: scale(1.5) !important; }

/* ==========================================================================
   Vertical Align Utilities
   ========================================================================== */

.v-align-custom { vertical-align: var(--custom-v-align) !important; }
.v-align-baseline { vertical-align: baseline !important; }
.v-align-sub { vertical-align: sub !important; }
.v-align-super { vertical-align: super !important; }
.v-align-top { vertical-align: top !important; }
.v-align-text-top { vertical-align: text-top !important; }
.v-align-text-bottom { vertical-align: text-bottom !important; }
.v-align-middle { vertical-align: middle !important; }
.v-align-bottom { vertical-align: bottom !important; }

/* ==========================================================================
   Visibility Utilities
   ========================================================================== */

.visibility-visible { visibility: visible !important; }
.visibility-hidden { visibility: hidden !important; }
.visibility-collapse { visibility: collapse !important; }
.visibility-inherit { visibility: inherit !important; }
.visible { visibility: visible !important; }
.invisible { visibility: hidden !important; }

/* ==========================================================================
   Z-Index Utilities
   ========================================================================== */

.z-index-custom { z-index: var(--custom-z-index) !important; }
.z-index-auto { z-index: auto !important; }
.z-index-0 { z-index: 0 !important; }
.z-index-1 { z-index: 1 !important; }
.z-index-2 { z-index: 2 !important; }
.z-index-3 { z-index: 3 !important; }
.z-index-4 { z-index: 4 !important; }
.z-index-5 { z-index: 5 !important; }
.z-index-10 { z-index: 10 !important; }
.z-index-20 { z-index: 20 !important; }
.z-index-30 { z-index: 30 !important; }
.z-index-40 { z-index: 40 !important; }
.z-index-50 { z-index: 50 !important; }
.z-index-100 { z-index: 100 !important; }
.z-index-999 { z-index: 999 !important; }
.z-index-9999 { z-index: 9999 !important; }

/* ==========================================================================
   Additional Modern Utilities
   ========================================================================== */

/* Object Fit */
.object-contain { -o-object-fit: contain !important; object-fit: contain !important; }
.object-cover { -o-object-fit: cover !important; object-fit: cover !important; }
.object-fill { -o-object-fit: fill !important; object-fit: fill !important; }
.object-none { -o-object-fit: none !important; object-fit: none !important; }
.object-scale-down { -o-object-fit: scale-down !important; object-fit: scale-down !important; }

/* Object Position */
.object-bottom { -o-object-position: bottom !important; object-position: bottom !important; }
.object-center { -o-object-position: center !important; object-position: center !important; }
.object-left { -o-object-position: left !important; object-position: left !important; }
.object-right { -o-object-position: right !important; object-position: right !important; }
.object-top { -o-object-position: top !important; object-position: top !important; }

/* Pointer Events */
.pointer-events-none { pointer-events: none !important; }
.pointer-events-auto { pointer-events: auto !important; }

/* User Select */
.select-none { -webkit-user-select: none !important; -moz-user-select: none !important; user-select: none !important; }
.select-text { -webkit-user-select: text !important; -moz-user-select: text !important; user-select: text !important; }
.select-all { -webkit-user-select: all !important; -moz-user-select: all !important; user-select: all !important; }
.select-auto { -webkit-user-select: auto !important; -moz-user-select: auto !important; user-select: auto !important; }

/* Aspect Ratio */
.aspect-auto { aspect-ratio: auto !important; }
.aspect-square { aspect-ratio: 1 / 1 !important; }
.aspect-video { aspect-ratio: 16 / 9 !important; }

/* List Style */
.list-style-none { list-style: none !important; }
.list-style-disc { list-style: disc !important; }
.list-style-decimal { list-style: decimal !important; }
.list-style-custom { list-style: var(--custom-list-style) !important; }

/* Outline */
.outline-none { outline: none !important; }
.outline { outline: 2px solid transparent !important; outline-offset: 2px !important; }
.outline-custom { outline: var(--custom-outline) !important; }

/* Resize */
.resize-none { resize: none !important; }
.resize { resize: both !important; }
.resize-x { resize: horizontal !important; }
.resize-y { resize: vertical !important; }

/* Scroll Behavior */
.scroll-smooth { scroll-behavior: smooth !important; }
.scroll-auto { scroll-behavior: auto !important; }

/* Touch Action */
.touch-auto { touch-action: auto !important; }
.touch-none { touch-action: none !important; }
.touch-pan-x { touch-action: pan-x !important; }
.touch-pan-y { touch-action: pan-y !important; }

/* Will Change */
.will-change-auto { will-change: auto !important; }
.will-change-scroll { will-change: scroll-position !important; }
.will-change-contents { will-change: contents !important; }
.will-change-transform { will-change: transform !important; }

/* ==========================================================================
   Dark Mode Support (using CSS custom properties)
   ========================================================================== */

@media (prefers-color-scheme: dark) {
  .dark-auto {
    /* Add your dark mode defaults here */
  }
}

/* Force dark mode */
.dark,
[data-theme="dark"] {
  color-scheme: dark;
}

/* Force light mode */
.light,
[data-theme="light"] {
  color-scheme: light;
}

/* ==========================================================================
   Responsive Utilities Helpers
   ========================================================================== */

/* Screen readers only */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border-width: 0 !important;
}

/* Not screen readers */
.not-sr-only {
  position: static !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

/* ==========================================================================
   Print Utilities
   ========================================================================== */

@media print {
  .print-none {
    display: none !important;
  }
}

