/**
 * =============================================================================
 * INDEX.CSS - APPLICATION STYLES
 * =============================================================================
 * 
 * This file defines all the CSS styles for the React application.
 * It uses Tailwind CSS, a "utility-first" CSS framework.
 * 
 * WHAT IS TAILWIND CSS?
 * ---------------------
 * Instead of writing custom CSS classes like:
 * 
 *   .my-button {
 *     background-color: blue;
 *     color: white;
 *     padding: 8px 16px;
 *     border-radius: 4px;
 *   }
 * 
 * Tailwind provides utility classes you compose directly in HTML/JSX:
 * 
 *   <button className="bg-blue-500 text-white px-4 py-2 rounded">
 * 
 * BENEFITS:
 * - No context switching between CSS and JSX
 * - Consistent spacing, colors, etc. (design system)
 * - Smaller CSS files (unused utilities are removed)
 * - Rapid development
 * 
 * DOWNSIDES:
 * - Long class strings can be hard to read
 * - Learning curve for the utility names
 * - Repeated patterns can get verbose
 * 
 * SOLUTION: @layer components
 * We define reusable component classes below to keep JSX clean.
 * 
 * FILE STRUCTURE:
 * ---------------
 * 1. Tailwind Directives (base, components, utilities)
 * 2. Root Element Styles
 * 3. Component Layer (buttons, cards, forms, etc.)
 */

/**
 * =============================================================================
 * TAILWIND DIRECTIVES
 * =============================================================================
 * 
 * These @tailwind directives inject Tailwind's styles at build time.
 * The build process (PostCSS) replaces these with actual CSS.
 */

/**
 * @tailwind base
 * 
 * Injects Tailwind's base styles:
 * - CSS reset (Preflight) - normalizes browser defaults
 * - Sets base font, line-height, etc.
 * - Removes default margins from headings, etc.
 */
*, ::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: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --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: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --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.19 | 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: Noto Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif; /* 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]) {
  -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;
}

/**
 * @tailwind components
 * 
 * Injects any component classes defined by Tailwind or plugins.
 * Also where our @layer components {} block gets injected.
 */
.container {
  width: 100%;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
/**
   * ===========================================================================
   * BUTTON STYLES
   * ===========================================================================
   * 
   * Button components use a base .btn class with variant modifiers.
   * This is called the "BEM-like" pattern (Block Element Modifier).
   */
/**
   * .btn - Base Button
   * 
   * All buttons share these styles. Apply specific variants on top.
   * 
   * TAILWIND CLASSES:
   * - inline-flex: Inline flexbox (allows centering icon + text)
   * - items-center justify-center: Center contents
   * - px-4 py-2: Padding (horizontal 1rem, vertical 0.5rem)
   * - rounded-md: Medium border radius
   * - font-medium: Medium font weight
   * - transition-colors: Animate color changes
   * - focus:outline-none: Remove default focus outline
   * - focus:ring-2 focus:ring-offset-2: Custom focus ring
   * - disabled:opacity-50: Dim when disabled
   * - disabled:cursor-not-allowed: Show "not allowed" cursor
   */
/**
   * .btn-primary - Primary Action Button
   * 
   * Used for main CTAs: Save, Submit, Create, etc.
   * Uses our primary brand color (dark blue from Tailwind config).
   */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-weight: 500;
  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;
}
.btn-primary:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --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: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-offset-width: 2px;
}
.btn-primary:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.btn-primary {
  --tw-bg-opacity: 1;
  background-color: rgb(30 58 95 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.btn-primary:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(26 51 86 / var(--tw-bg-opacity, 1));
}
.btn-primary:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 58 95 / var(--tw-ring-opacity, 1));
}
/**
   * .btn-secondary - Secondary Action Button
   * 
   * Used for secondary actions. Uses accent color (gold/yellow).
   */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-weight: 500;
  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;
}
.btn-secondary:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --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: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-offset-width: 2px;
}
.btn-secondary:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.btn-secondary {
  --tw-bg-opacity: 1;
  background-color: rgb(201 162 39 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(30 58 95 / var(--tw-text-opacity, 1));
}
.btn-secondary:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(231 199 64 / var(--tw-bg-opacity, 1));
}
.btn-secondary:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(201 162 39 / var(--tw-ring-opacity, 1));
}
/**
   * .btn-outline - Outline Button
   * 
   * Border-only button that fills on hover.
   * Good for less prominent actions.
   */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-weight: 500;
  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;
}
.btn-outline:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --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: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-offset-width: 2px;
}
.btn-outline:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.btn-outline {
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(30 58 95 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(30 58 95 / var(--tw-text-opacity, 1));
}
.btn-outline:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(30 58 95 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.btn-outline:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 58 95 / var(--tw-ring-opacity, 1));
}
/**
   * .btn-ghost - Ghost Button
   * 
   * No background, just text. Shows background on hover.
   * Used for tertiary actions, like "Cancel".
   */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-weight: 500;
  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;
}
.btn-ghost:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --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: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-offset-width: 2px;
}
.btn-ghost:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.btn-ghost {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.btn-ghost:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.btn-ghost:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(156 163 175 / var(--tw-ring-opacity, 1));
}
/**
   * .btn-danger - Danger Button
   * 
   * Red button for destructive actions: Delete, Remove, etc.
   */
.btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-weight: 500;
  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;
}
.btn-danger:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --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: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-offset-width: 2px;
}
.btn-danger:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.btn-danger {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.btn-danger:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}
.btn-danger:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity, 1));
}
/**
   * SIZE MODIFIERS
   * 
   * Apply these alongside a button variant:
   * <button className="btn-primary btn-sm">Small</button>
   */
.btn-sm {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
/**
   * ===========================================================================
   * CARD STYLES
   * ===========================================================================
   * 
   * Cards are container components for grouping related content.
   * 
   * STRUCTURE:
   * <div className="card">
   *   <div className="card-header">Title</div>  (optional)
   *   <div className="card-body">Content</div>
   *   <div className="card-footer">Actions</div> (optional)
   * </div>
   */
/**
   * .card - Card Container
   */
.card {
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
/**
   * .card-header - Card Header
   * 
   * Used for card titles. Has bottom border to separate from content.
   */
.card-header {
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
/**
   * .card-body - Card Content Area
   */
.card-body {
  padding: 1.5rem;
}
/**
   * .card-footer - Card Footer
   * 
   * Used for action buttons. Has top border and slight background.
   */
.card-footer {
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
/**
   * ===========================================================================
   * FORM STYLES
   * ===========================================================================
   * 
   * Input, select, textarea, and form layout styles.
   */
/**
   * .input - Form Input
   * 
   * Applies to text inputs, selects, and textareas.
   */
.input {
  width: 100%;
  border-radius: 0.375rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.input:focus {
  --tw-border-opacity: 1;
  border-color: rgb(30 58 95 / var(--tw-border-opacity, 1));
  outline: 2px solid transparent;
  outline-offset: 2px;
  --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: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 58 95 / var(--tw-ring-opacity, 1));
}
/**
   * .input-error - Input with Error State
   * 
   * Red border and focus for invalid inputs.
   */
.input-error {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}
.input-error:focus {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity, 1));
}
/**
   * .label - Form Label
   */
.label {
  margin-bottom: 0.25rem;
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
/**
   * .form-group - Form Field Container
   * 
   * Wraps label + input + error message.
   * Provides consistent spacing between fields.
   */
.form-group {
  margin-bottom: 1rem;
}
/**
   * .error-message - Validation Error Text
   */
/**
   * ===========================================================================
   * TABLE STYLES
   * ===========================================================================
   * 
   * Styles for data tables.
   * 
   * USAGE:
   * <table className="table">
   *   <thead><tr><th>Header</th></tr></thead>
   *   <tbody><tr><td>Data</td></tr></tbody>
   * </table>
   */
/**
   * .table - Table Container
   */
.table {
  width: 100%;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
/**
   * .table th - Table Header Cells
   */
.table th {
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
/**
   * .table td - Table Data Cells
   */
.table td {
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
/**
   * Row Hover Effect
   */
.table tr:hover td {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
/**
   * ===========================================================================
   * BADGE STYLES
   * ===========================================================================
   * 
   * Small labels for status, categories, etc.
   * 
   * USAGE:
   * <span className="badge badge-primary">Active</span>
   * <span className="badge badge-success">Complete</span>
   */
/**
   * .badge - Base Badge
   */
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
}
/**
   * Badge Variants
   * 
   * Each variant has a light background with darker text.
   */
.badge-primary {
  --tw-bg-opacity: 1;
  background-color: rgb(224 235 245 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(22 43 72 / var(--tw-text-opacity, 1));
}
.badge-secondary {
  --tw-bg-opacity: 1;
  background-color: rgb(251 243 211 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(151 122 26 / var(--tw-text-opacity, 1));
}
.badge-success {
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity, 1));
}
.badge-warning {
  --tw-bg-opacity: 1;
  background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(161 98 7 / var(--tw-text-opacity, 1));
}
.badge-danger {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}
/**
   * ===========================================================================
   * PAGE LAYOUT STYLES
   * ===========================================================================
   * 
   * Styles for page headers and titles.
   */
/**
   * .page-header - Page Header Container
   * 
   * Contains title and subtitle.
   */
.page-header {
  margin-bottom: 1.5rem;
}
/**
   * .page-title - Main Page Title
   */
.page-title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
/**
   * .page-subtitle - Page Description
   */
.page-subtitle {
  margin-top: 0.25rem;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
/**
   * ===========================================================================
   * MOBILE MENU STYLES
   * ===========================================================================
   * 
   * Bottom-positioned mobile navigation using native HTML Popover API.
   * Provides comfortable one-handed access with switchable left/right position.
   * Anchored to bottom of screen with max 50% safe view height.
   */
.mobile-menu-container {
  position: fixed;
  bottom: 1.5rem;
  z-index: 50;
}
.mobile-menu-container.hand-left {
  left: 1.5rem;
  right: auto;
}
.mobile-menu-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.mobile-menu-trigger:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --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: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-offset-width: 2px;
}
.mobile-menu-trigger {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  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;
    background-color: #e8a87c;
    color: #1a1a1a;
    border: 2px solid #d4a574;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
}
.mobile-menu-trigger:hover {
    background-color: #dea070;
  }
.mobile-menu-trigger:focus {
    --tw-ring-color: #d4a574;
  }
.mobile-menu-popover {
  position: fixed;
  width: 100%;
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(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: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  margin: 0px;
  padding: 0px;
    inset: unset;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 50svh;
    border-radius: 1rem 1rem 0 0;
    overflow: hidden;
}
.mobile-menu-popover:popover-open {
  display: flex;
  flex-direction: column;
}
.mobile-menu-popover::backdrop {
    background-color: rgba(0, 0, 0, 0.3);
  }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
    border-radius: 1rem 1rem 0 0;
}
.mobile-menu-user {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.mobile-menu-close {
  border-radius: 0.375rem;
  padding: 0.25rem;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  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;
}
.mobile-menu-close:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.mobile-menu-items {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.mobile-menu-item {
  display: block;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
  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;
}
.mobile-menu-item:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.mobile-menu-item-active {
  --tw-bg-opacity: 1;
  background-color: rgb(224 235 245 / var(--tw-bg-opacity, 1));
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(22 43 72 / var(--tw-text-opacity, 1));
    border-left: 3px solid #1e3a5f;
    padding-left: calc(1rem - 3px);
}
.mobile-menu-container.hand-left .mobile-menu-item-active {
    border-left: none;
    border-right: 3px solid #1e3a5f;
    padding-left: 1rem;
    padding-right: calc(1rem - 3px);
  }
.mobile-menu-footer > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.mobile-menu-footer {
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
  padding: 0.75rem;
    flex-shrink: 0;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
}
.mobile-menu-hand-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.375rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  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;
}
.mobile-menu-hand-toggle:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.mobile-menu-logout {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.375rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
  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;
}
.mobile-menu-logout:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}

/**
 * @tailwind utilities
 * 
 * Injects all utility classes:
 * - flex, grid, text-*, bg-*, p-*, m-*, etc.
 * - Responsive variants (md:, lg:, etc.)
 * - State variants (hover:, focus:, etc.)
 */
#atl-thunder-app .visible {
  visibility: visible;
}
#atl-thunder-app .static {
  position: static;
}
#atl-thunder-app .fixed {
  position: fixed;
}
#atl-thunder-app .absolute {
  position: absolute;
}
#atl-thunder-app .relative {
  position: relative;
}
#atl-thunder-app .sticky {
  position: sticky;
}
#atl-thunder-app .inset-0 {
  inset: 0px;
}
#atl-thunder-app .bottom-4 {
  bottom: 1rem;
}
#atl-thunder-app .z-50 {
  z-index: 50;
}
#atl-thunder-app .m-0 {
  margin: 0px;
}
#atl-thunder-app .mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
#atl-thunder-app .mx-auto {
  margin-left: auto;
  margin-right: auto;
}
#atl-thunder-app .mb-0\.5 {
  margin-bottom: 0.125rem;
}
#atl-thunder-app .mb-1 {
  margin-bottom: 0.25rem;
}
#atl-thunder-app .mb-2 {
  margin-bottom: 0.5rem;
}
#atl-thunder-app .mb-3 {
  margin-bottom: 0.75rem;
}
#atl-thunder-app .mb-4 {
  margin-bottom: 1rem;
}
#atl-thunder-app .mb-6 {
  margin-bottom: 1.5rem;
}
#atl-thunder-app .mb-8 {
  margin-bottom: 2rem;
}
#atl-thunder-app .ml-10 {
  margin-left: 2.5rem;
}
#atl-thunder-app .ml-2 {
  margin-left: 0.5rem;
}
#atl-thunder-app .ml-auto {
  margin-left: auto;
}
#atl-thunder-app .mr-2 {
  margin-right: 0.5rem;
}
#atl-thunder-app .mt-1 {
  margin-top: 0.25rem;
}
#atl-thunder-app .mt-2 {
  margin-top: 0.5rem;
}
#atl-thunder-app .mt-3 {
  margin-top: 0.75rem;
}
#atl-thunder-app .mt-4 {
  margin-top: 1rem;
}
#atl-thunder-app .mt-6 {
  margin-top: 1.5rem;
}
#atl-thunder-app .block {
  display: block;
}
#atl-thunder-app .inline-block {
  display: inline-block;
}
#atl-thunder-app .inline {
  display: inline;
}
#atl-thunder-app .flex {
  display: flex;
}
#atl-thunder-app .inline-flex {
  display: inline-flex;
}
#atl-thunder-app .table {
  display: table;
}
#atl-thunder-app .grid {
  display: grid;
}
#atl-thunder-app .hidden {
  display: none;
}
#atl-thunder-app .h-1 {
  height: 0.25rem;
}
#atl-thunder-app .h-10 {
  height: 2.5rem;
}
#atl-thunder-app .h-12 {
  height: 3rem;
}
#atl-thunder-app .h-16 {
  height: 4rem;
}
#atl-thunder-app .h-20 {
  height: 5rem;
}
#atl-thunder-app .h-24 {
  height: 6rem;
}
#atl-thunder-app .h-3 {
  height: 0.75rem;
}
#atl-thunder-app .h-4 {
  height: 1rem;
}
#atl-thunder-app .h-5 {
  height: 1.25rem;
}
#atl-thunder-app .h-6 {
  height: 1.5rem;
}
#atl-thunder-app .h-8 {
  height: 2rem;
}
#atl-thunder-app .h-full {
  height: 100%;
}
#atl-thunder-app .max-h-96 {
  max-height: 24rem;
}
#atl-thunder-app .max-h-\[90vh\] {
  max-height: 90vh;
}
#atl-thunder-app .min-h-\[110px\] {
  min-height: 110px;
}
#atl-thunder-app .min-h-\[120px\] {
  min-height: 120px;
}
#atl-thunder-app .min-h-\[200px\] {
  min-height: 200px;
}
#atl-thunder-app .min-h-\[4\.5rem\] {
  min-height: 4.5rem;
}
#atl-thunder-app .min-h-\[72px\] {
  min-height: 72px;
}
#atl-thunder-app .min-h-\[88px\] {
  min-height: 88px;
}
#atl-thunder-app .min-h-\[90px\] {
  min-height: 90px;
}
#atl-thunder-app .min-h-screen {
  min-height: 100vh;
}
#atl-thunder-app .w-10 {
  width: 2.5rem;
}
#atl-thunder-app .w-12 {
  width: 3rem;
}
#atl-thunder-app .w-16 {
  width: 4rem;
}
#atl-thunder-app .w-20 {
  width: 5rem;
}
#atl-thunder-app .w-24 {
  width: 6rem;
}
#atl-thunder-app .w-3 {
  width: 0.75rem;
}
#atl-thunder-app .w-4 {
  width: 1rem;
}
#atl-thunder-app .w-5 {
  width: 1.25rem;
}
#atl-thunder-app .w-6 {
  width: 1.5rem;
}
#atl-thunder-app .w-8 {
  width: 2rem;
}
#atl-thunder-app .w-\[calc\(100\%-2rem\)\] {
  width: calc(100% - 2rem);
}
#atl-thunder-app .w-full {
  width: 100%;
}
#atl-thunder-app .min-w-0 {
  min-width: 0px;
}
#atl-thunder-app .min-w-\[12rem\] {
  min-width: 12rem;
}
#atl-thunder-app .min-w-\[140px\] {
  min-width: 140px;
}
#atl-thunder-app .min-w-\[8rem\] {
  min-width: 8rem;
}
#atl-thunder-app .max-w-2xl {
  max-width: 42rem;
}
#atl-thunder-app .max-w-3xl {
  max-width: 48rem;
}
#atl-thunder-app .max-w-4xl {
  max-width: 56rem;
}
#atl-thunder-app .max-w-7xl {
  max-width: 80rem;
}
#atl-thunder-app .max-w-\[280px\] {
  max-width: 280px;
}
#atl-thunder-app .max-w-lg {
  max-width: 32rem;
}
#atl-thunder-app .max-w-md {
  max-width: 28rem;
}
#atl-thunder-app .max-w-xl {
  max-width: 36rem;
}
#atl-thunder-app .flex-1 {
  flex: 1 1 0%;
}
#atl-thunder-app .shrink-0 {
  flex-shrink: 0;
}
#atl-thunder-app .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 pbp-shake {
  0%, 100% {
    transform: translateX(0);
  }
  20%, 60% {
    transform: translateX(-6px);
  }
  40%, 80% {
    transform: translateX(6px);
  }
}
#atl-thunder-app .animate-pbp-shake {
  animation: pbp-shake 0.45s ease-in-out;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
#atl-thunder-app .animate-spin {
  animation: spin 1s linear infinite;
}
#atl-thunder-app .cursor-grab {
  cursor: grab;
}
#atl-thunder-app .cursor-grabbing {
  cursor: grabbing;
}
#atl-thunder-app .cursor-pointer {
  cursor: pointer;
}
#atl-thunder-app .touch-none {
  touch-action: none;
}
#atl-thunder-app .list-none {
  list-style-type: none;
}
#atl-thunder-app .grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
#atl-thunder-app .grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
#atl-thunder-app .grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
#atl-thunder-app .flex-row {
  flex-direction: row;
}
#atl-thunder-app .flex-row-reverse {
  flex-direction: row-reverse;
}
#atl-thunder-app .flex-col {
  flex-direction: column;
}
#atl-thunder-app .flex-wrap {
  flex-wrap: wrap;
}
#atl-thunder-app .items-start {
  align-items: flex-start;
}
#atl-thunder-app .items-center {
  align-items: center;
}
#atl-thunder-app .items-stretch {
  align-items: stretch;
}
#atl-thunder-app .justify-end {
  justify-content: flex-end;
}
#atl-thunder-app .justify-center {
  justify-content: center;
}
#atl-thunder-app .justify-between {
  justify-content: space-between;
}
#atl-thunder-app .gap-1 {
  gap: 0.25rem;
}
#atl-thunder-app .gap-2 {
  gap: 0.5rem;
}
#atl-thunder-app .gap-3 {
  gap: 0.75rem;
}
#atl-thunder-app .gap-4 {
  gap: 1rem;
}
#atl-thunder-app .gap-6 {
  gap: 1.5rem;
}
#atl-thunder-app :is(.space-x-1 > :not([hidden]) ~ :not([hidden])) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
#atl-thunder-app :is(.space-x-2 > :not([hidden]) ~ :not([hidden])) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
#atl-thunder-app :is(.space-x-3 > :not([hidden]) ~ :not([hidden])) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}
#atl-thunder-app :is(.space-x-4 > :not([hidden]) ~ :not([hidden])) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
#atl-thunder-app :is(.space-y-2 > :not([hidden]) ~ :not([hidden])) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
#atl-thunder-app :is(.space-y-3 > :not([hidden]) ~ :not([hidden])) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
#atl-thunder-app :is(.space-y-4 > :not([hidden]) ~ :not([hidden])) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
#atl-thunder-app :is(.space-y-6 > :not([hidden]) ~ :not([hidden])) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
#atl-thunder-app :is(.space-y-8 > :not([hidden]) ~ :not([hidden])) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
#atl-thunder-app .overflow-hidden {
  overflow: hidden;
}
#atl-thunder-app .overflow-x-auto {
  overflow-x: auto;
}
#atl-thunder-app .overflow-y-auto {
  overflow-y: auto;
}
#atl-thunder-app .truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#atl-thunder-app .rounded {
  border-radius: 0.25rem;
}
#atl-thunder-app .rounded-full {
  border-radius: 9999px;
}
#atl-thunder-app .rounded-lg {
  border-radius: 0.5rem;
}
#atl-thunder-app .rounded-md {
  border-radius: 0.375rem;
}
#atl-thunder-app .rounded-xl {
  border-radius: 0.75rem;
}
#atl-thunder-app .border {
  border-width: 1px;
}
#atl-thunder-app .border-2 {
  border-width: 2px;
}
#atl-thunder-app .border-b {
  border-bottom-width: 1px;
}
#atl-thunder-app .border-b-2 {
  border-bottom-width: 2px;
}
#atl-thunder-app .border-t {
  border-top-width: 1px;
}
#atl-thunder-app .border-amber-300 {
  --tw-border-opacity: 1;
  border-color: rgb(252 211 77 / var(--tw-border-opacity, 1));
}
#atl-thunder-app .border-gray-100 {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
#atl-thunder-app .border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
#atl-thunder-app .border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
#atl-thunder-app .border-gray-500 {
  --tw-border-opacity: 1;
  border-color: rgb(107 114 128 / var(--tw-border-opacity, 1));
}
#atl-thunder-app .border-gray-900 {
  --tw-border-opacity: 1;
  border-color: rgb(17 24 39 / var(--tw-border-opacity, 1));
}
#atl-thunder-app .border-green-200 {
  --tw-border-opacity: 1;
  border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
}
#atl-thunder-app .border-green-700 {
  --tw-border-opacity: 1;
  border-color: rgb(21 128 61 / var(--tw-border-opacity, 1));
}
#atl-thunder-app .border-primary {
  --tw-border-opacity: 1;
  border-color: rgb(30 58 95 / var(--tw-border-opacity, 1));
}
#atl-thunder-app .border-red-200 {
  --tw-border-opacity: 1;
  border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}
#atl-thunder-app .border-red-300 {
  --tw-border-opacity: 1;
  border-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
}
#atl-thunder-app .border-t-primary {
  --tw-border-opacity: 1;
  border-top-color: rgb(30 58 95 / var(--tw-border-opacity, 1));
}
#atl-thunder-app .bg-amber-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 243 199 / var(--tw-bg-opacity, 1));
}
#atl-thunder-app .bg-amber-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 251 235 / var(--tw-bg-opacity, 1));
}
#atl-thunder-app .bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
#atl-thunder-app .bg-blue-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}
#atl-thunder-app .bg-blue-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
#atl-thunder-app .bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
#atl-thunder-app .bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
#atl-thunder-app .bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
#atl-thunder-app .bg-gray-50\/80 {
  background-color: rgb(249 250 251 / 0.8);
}
#atl-thunder-app .bg-gray-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}
#atl-thunder-app .bg-green-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}
#atl-thunder-app .bg-green-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}
#atl-thunder-app .bg-green-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}
#atl-thunder-app .bg-green-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
}
#atl-thunder-app .bg-orange-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 237 213 / var(--tw-bg-opacity, 1));
}
#atl-thunder-app .bg-primary {
  --tw-bg-opacity: 1;
  background-color: rgb(30 58 95 / var(--tw-bg-opacity, 1));
}
#atl-thunder-app .bg-primary-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(26 51 86 / var(--tw-bg-opacity, 1));
}
#atl-thunder-app .bg-red-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}
#atl-thunder-app .bg-red-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
#atl-thunder-app .bg-red-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}
#atl-thunder-app .bg-red-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}
#atl-thunder-app .bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
#atl-thunder-app .bg-yellow-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
}
#atl-thunder-app .bg-opacity-50 {
  --tw-bg-opacity: 0.5;
}
#atl-thunder-app .object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
#atl-thunder-app .p-0 {
  padding: 0px;
}
#atl-thunder-app .p-2 {
  padding: 0.5rem;
}
#atl-thunder-app .p-3 {
  padding: 0.75rem;
}
#atl-thunder-app .p-4 {
  padding: 1rem;
}
#atl-thunder-app .p-6 {
  padding: 1.5rem;
}
#atl-thunder-app .px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
#atl-thunder-app .px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
#atl-thunder-app .px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
#atl-thunder-app .px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
#atl-thunder-app .px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
#atl-thunder-app .py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
#atl-thunder-app .py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
#atl-thunder-app .py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
#atl-thunder-app .py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
#atl-thunder-app .py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
#atl-thunder-app .py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
#atl-thunder-app .py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
#atl-thunder-app .py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
#atl-thunder-app .py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
#atl-thunder-app .pb-4 {
  padding-bottom: 1rem;
}
#atl-thunder-app .pr-4 {
  padding-right: 1rem;
}
#atl-thunder-app .text-left {
  text-align: left;
}
#atl-thunder-app .text-center {
  text-align: center;
}
#atl-thunder-app .text-right {
  text-align: right;
}
#atl-thunder-app .font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
#atl-thunder-app .text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
#atl-thunder-app .text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
#atl-thunder-app .text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
#atl-thunder-app .text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
#atl-thunder-app .text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
#atl-thunder-app .text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
#atl-thunder-app .text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
#atl-thunder-app .font-bold {
  font-weight: 700;
}
#atl-thunder-app .font-medium {
  font-weight: 500;
}
#atl-thunder-app .font-semibold {
  font-weight: 600;
}
#atl-thunder-app .uppercase {
  text-transform: uppercase;
}
#atl-thunder-app .tracking-wide {
  letter-spacing: 0.025em;
}
#atl-thunder-app .text-amber-700 {
  --tw-text-opacity: 1;
  color: rgb(180 83 9 / var(--tw-text-opacity, 1));
}
#atl-thunder-app .text-amber-800 {
  --tw-text-opacity: 1;
  color: rgb(146 64 14 / var(--tw-text-opacity, 1));
}
#atl-thunder-app .text-blue-800 {
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}
#atl-thunder-app .text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
#atl-thunder-app .text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
#atl-thunder-app .text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
#atl-thunder-app .text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
#atl-thunder-app .text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
#atl-thunder-app .text-gray-800 {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
#atl-thunder-app .text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
#atl-thunder-app .text-green-600 {
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}
#atl-thunder-app .text-green-700 {
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity, 1));
}
#atl-thunder-app .text-green-800 {
  --tw-text-opacity: 1;
  color: rgb(22 101 52 / var(--tw-text-opacity, 1));
}
#atl-thunder-app .text-orange-800 {
  --tw-text-opacity: 1;
  color: rgb(154 52 18 / var(--tw-text-opacity, 1));
}
#atl-thunder-app .text-primary {
  --tw-text-opacity: 1;
  color: rgb(30 58 95 / var(--tw-text-opacity, 1));
}
#atl-thunder-app .text-red-600 {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
#atl-thunder-app .text-red-700 {
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}
#atl-thunder-app .text-red-800 {
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity, 1));
}
#atl-thunder-app .text-secondary {
  --tw-text-opacity: 1;
  color: rgb(201 162 39 / var(--tw-text-opacity, 1));
}
#atl-thunder-app .text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
#atl-thunder-app .text-yellow-800 {
  --tw-text-opacity: 1;
  color: rgb(133 77 14 / var(--tw-text-opacity, 1));
}
#atl-thunder-app .underline {
  text-decoration-line: underline;
}
#atl-thunder-app .opacity-0 {
  opacity: 0;
}
#atl-thunder-app .shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(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: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
#atl-thunder-app .shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(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: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
#atl-thunder-app .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: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
#atl-thunder-app .ring-blue-500 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}
#atl-thunder-app .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);
}
#atl-thunder-app .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;
}
#atl-thunder-app .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;
}
#atl-thunder-app .transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
#atl-thunder-app .transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/**
 * =============================================================================
 * ROOT ELEMENT STYLES
 * =============================================================================
 * 
 * Styles for the container element where React mounts.
 * #atl-thunder-app is the ID of our root DOM element.
 * 
 * @apply DIRECTIVE:
 * -----------------
 * @apply lets you use Tailwind utilities in regular CSS.
 * This is useful for styling elements you can't add classes to directly.
 */
#atl-thunder-app {
  /**
   * @apply min-h-screen bg-gray-50;
   * 
   * - min-h-screen: minimum height of 100vh (full viewport)
   * - bg-gray-50: Very light gray background
   * 
   * This ensures the app fills the screen even with little content.
   */
  min-height: 100vh;
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  
  /**
   * font-family defines the text font stack.
   * 
   * Stack order (first available is used):
   * 1. 'Noto Sans' - Google Font (if loaded)
   * 2. -apple-system - Apple's system font
   * 3. BlinkMacSystemFont - Chrome on macOS
   * 4. 'Segoe UI' - Windows system font
   * 5. Roboto - Android/Google system font
   * 6. sans-serif - Generic fallback
   */
  font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/**
 * Lock body scroll when mobile menu popover is open.
 * Uses :has() selector to detect popover state.
 */
body:has(#mobile-nav:popover-open) {
  overflow: hidden;
}

/**
 * =============================================================================
 * @layer components - REUSABLE COMPONENT CLASSES
 * =============================================================================
 * 
 * @layer components tells Tailwind these are component-level styles.
 * They sit between base styles and utilities in specificity.
 * 
 * WHY USE @layer?
 * ---------------
 * 1. Proper specificity order (base < components < utilities)
 * 2. Utilities can override these (e.g., mt-4 overrides component margin)
 * 3. Better organization of custom styles
 * 
 * HOW TO USE THESE CLASSES:
 * -------------------------
 * In your JSX:
 *   <button className="btn-primary">Click Me</button>
 *   <div className="card">
 *     <div className="card-body">Content</div>
 *   </div>
 */

/**
 * =============================================================================
 * TAILWIND CONFIGURATION NOTE
 * =============================================================================
 * 
 * Some classes like 'primary', 'primary-600', 'secondary' are CUSTOM colors
 * defined in the Tailwind configuration file (tailwind.config.js).
 * 
 * If you see classes like:
 * - bg-primary, text-primary, border-primary
 * - bg-secondary, text-secondary
 * - primary-100, primary-600, secondary-400
 * 
 * These are our brand colors, not Tailwind defaults.
 * 
 * DEFAULT COLORS VS CUSTOM:
 * - gray-500, blue-600, red-500 → Tailwind defaults
 * - primary, secondary → Our custom theme colors
 * 
 * CUSTOMIZING COLORS:
 * To change the brand colors, edit tailwind.config.js:
 * 
 * theme: {
 *   extend: {
 *     colors: {
 *       primary: {
 *         DEFAULT: '#1e3a5f',  // Dark blue
 *         600: '#163049',      // Darker on hover
 *         // ... other shades
 *       },
 *       secondary: {
 *         DEFAULT: '#f4c430',  // Gold
 *         // ... other shades
 *       }
 *     }
 *   }
 * }
 * 
 * =============================================================================
 * HOW TO EXTEND THIS FILE
 * =============================================================================
 * 
 * 1. ADD A NEW COMPONENT CLASS:
 *    Inside @layer components { }, add your class:
 *    
 *    .my-component {
 *      @apply flex items-center p-4 bg-white rounded-lg;
 *    }
 * 
 * 2. ADD RESPONSIVE VARIANTS:
 *    Use responsive prefixes in your component:
 *    
 *    .my-component {
 *      @apply p-2 md:p-4 lg:p-6;
 *    }
 * 
 * 3. ADD HOVER/FOCUS STATES:
 *    Use state prefixes:
 *    
 *    .my-link {
 *      @apply text-blue-500 hover:text-blue-700 focus:underline;
 *    }
 * 
 * =============================================================================
 * RESOURCES FOR LEARNING TAILWIND
 * =============================================================================
 * 
 * 1. Official Documentation: https://tailwindcss.com/docs
 * 2. Tailwind UI (paid component library): https://tailwindui.com
 * 3. Cheat Sheet: https://nerdcave.com/tailwind-cheat-sheet
 * 4. Play online: https://play.tailwindcss.com
 */

#atl-thunder-app .file\:mr-4::file-selector-button {
  margin-right: 1rem;
}

#atl-thunder-app .file\:rounded-md::file-selector-button {
  border-radius: 0.375rem;
}

#atl-thunder-app .file\:border-0::file-selector-button {
  border-width: 0px;
}

#atl-thunder-app .file\:bg-primary::file-selector-button {
  --tw-bg-opacity: 1;
  background-color: rgb(30 58 95 / var(--tw-bg-opacity, 1));
}

#atl-thunder-app .file\:px-4::file-selector-button {
  padding-left: 1rem;
  padding-right: 1rem;
}

#atl-thunder-app .file\:py-2::file-selector-button {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

#atl-thunder-app .file\:text-sm::file-selector-button {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

#atl-thunder-app .file\:font-medium::file-selector-button {
  font-weight: 500;
}

#atl-thunder-app .file\:text-white::file-selector-button {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

#atl-thunder-app .last\:border-0:last-child {
  border-width: 0px;
}

#atl-thunder-app .hover\:border-gray-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}

#atl-thunder-app .hover\:bg-gray-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}

#atl-thunder-app .hover\:bg-gray-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}

#atl-thunder-app .hover\:bg-primary-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(26 51 86 / var(--tw-bg-opacity, 1));
}

#atl-thunder-app .hover\:text-gray-700:hover {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}

#atl-thunder-app .hover\:text-red-800:hover {
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity, 1));
}

#atl-thunder-app .hover\:text-secondary-600:hover {
  --tw-text-opacity: 1;
  color: rgb(181 146 31 / var(--tw-text-opacity, 1));
}

#atl-thunder-app .hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

#atl-thunder-app .hover\:underline:hover {
  text-decoration-line: underline;
}

#atl-thunder-app .hover\:shadow-md:hover {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(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: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

#atl-thunder-app .hover\:file\:bg-primary-600::file-selector-button:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(26 51 86 / var(--tw-bg-opacity, 1));
}

#atl-thunder-app .focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

#atl-thunder-app .focus-visible\:ring-2:focus-visible {
  --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: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

#atl-thunder-app .focus-visible\:ring-primary:focus-visible {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(30 58 95 / var(--tw-ring-opacity, 1));
}

#atl-thunder-app .disabled\:opacity-50:disabled {
  opacity: 0.5;
}

#atl-thunder-app :is(.group:hover .group-hover\:opacity-100) {
  opacity: 1;
}

@media (min-width: 640px) {
  #atl-thunder-app .sm\:mb-0 {
    margin-bottom: 0px;
  }
  #atl-thunder-app .sm\:w-auto {
    width: auto;
  }
  #atl-thunder-app .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #atl-thunder-app .sm\:flex-row {
    flex-direction: row;
  }
  #atl-thunder-app .sm\:items-center {
    align-items: center;
  }
  #atl-thunder-app .sm\:justify-between {
    justify-content: space-between;
  }
  #atl-thunder-app .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 768px) {
  #atl-thunder-app .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  #atl-thunder-app .md\:flex {
    display: flex;
  }
  #atl-thunder-app .md\:hidden {
    display: none;
  }
  #atl-thunder-app .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #atl-thunder-app .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  #atl-thunder-app .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #atl-thunder-app .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  #atl-thunder-app .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  #atl-thunder-app .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1280px) {
  #atl-thunder-app .xl\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

