/* Seclusa Global - Design System CSS */
/* Mobile-First, Light Theme, Elegant Typography */

:root {
  /* Design Tokens - Light Theme */
  --color-bg: #ffffff;
  --color-surface: #f8f9fa;
  --color-text: #1a1a1a;
  --color-sub: #6b7280;
  --color-accent: #b4a174;
  --color-border: #e5e7eb;
  --color-error: #ff4444;
  --color-success: #00cc66;
  
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(0,0,0,.2);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.3);
  
  --font-sans: ui-sans-serif, system-ui, "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Code", "Roboto Mono", Consolas, monospace;
  
  /* Typography Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  
  /* Spacing System */
  --space-0: 0;
  --space-px: 1px;
  --space-0_5: 0.125rem;
  --space-1: 0.25rem;
  --space-1_5: 0.375rem;
  --space-2: 0.5rem;
  --space-2_5: 0.625rem;
  --space-3: 0.75rem;
  --space-3_5: 0.875rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-7: 1.75rem;
  --space-8: 2rem;
  --space-9: 2.25rem;
  --space-10: 2.5rem;
  --space-11: 2.75rem;
  --space-12: 3rem;
  --space-14: 3.5rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-28: 7rem;
  --space-32: 8rem;
  
  /* Layout */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
  margin-bottom: var(--space-4);
  color: var(--color-sub);
  line-height: 1.7;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--color-text);
  text-decoration: underline;
}

/* Layout Components */
.container {
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

footer {
    padding: 25px 0;
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-6);
  }
}

.section {
  padding: var(--space-16) 0;
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-24) 0;
  }
}

.seclusa-s {
    font-size: 2rem !important;
}

/* Luxury UI Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: 0.025em;
  background: linear-gradient(135deg, var(--color-accent) 0%, #9d8b5a 100%);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(180, 161, 116, 0.3);
  min-height: 52px; /* Luxurious touch target */
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  box-shadow: 0 8px 25px rgba(180, 161, 116, 0.4);
  background: linear-gradient(135deg, #c4af7a 0%, var(--color-accent) 100%);
  text-decoration: none;
}

.btn:active {
  box-shadow: 0 4px 14px rgba(180, 161, 116, 0.3);
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(180, 161, 116, 0.4), 0 4px 14px rgba(180, 161, 116, 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, #9d8b5a 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(180, 161, 116, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #c4af7a 0%, var(--color-accent) 100%);
  box-shadow: 0 8px 25px rgba(180, 161, 116, 0.4);
}

.btn-secondary {
  background: #ffffff;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  box-shadow: 0 3px 12px rgba(180, 161, 116, 0.2);
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 5px;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-accent);
  box-shadow: 0 6px 20px rgba(180, 161, 116, 0.35);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  box-shadow: 0 2px 8px rgba(180, 161, 116, 0.1);
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--color-accent);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-outline:hover {
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(180, 161, 116, 0.25);
}

.btn-outline:hover::before {
  width: 100%;
}

.btn-sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  min-height: 44px;
  box-shadow: 0 3px 10px rgba(180, 161, 116, 0.25);
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  min-height: 60px;
  box-shadow: 0 6px 20px rgba(180, 161, 116, 0.35);
}

/* Form Components */
.form-group {
  margin-bottom: var(--space-6);
}

.form-label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: 500;
  color: var(--color-text);
  font-size: var(--text-sm);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-text);
  transition: all 0.2s ease;
  min-height: 48px;
  line-height: 1.5;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(180, 161, 116, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-sub);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-error {
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-error);
}

.form-help {
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-sub);
}

/* Card Component */
.card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  position: relative;
  z-index: 1;
}

.card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  z-index: 2;
}

.card-header {
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.card-body {
  padding: var(--space-6);
}

.card-footer {
  padding: var(--space-5) var(--space-6);
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}

@media (min-width: 768px) {
  .card-header {
    padding: var(--space-6) var(--space-8);
  }
  
  .card-body {
    padding: var(--space-8);
  }
  
  .card-footer {
    padding: var(--space-6) var(--space-8);
  }
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4);
  min-height: 64px;
  max-width: var(--container-xl);
  margin: 0 auto;
}

.nav-logo {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
}

.nav-links {
  display: none;
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: var(--color-sub);
  font-size: var(--text-sm);
  transition: color 0.2s ease;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
}

.nav-link:hover {
  color: var(--color-text);
  text-decoration: none;
  background: var(--color-surface);
}

/* Admin styles removed */

/* Hero Section */
.hero {
  padding: var(--space-20) 0;
  text-align: center;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-surface) 100%);
}

@media (min-width: 768px) {
  .hero {
    padding: var(--space-24) 0;
  }
}

.hero-title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-6);
  font-weight: 700;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: var(--text-5xl);
  }
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--color-sub);
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: var(--text-xl);
  }
}

/* Grid System - Simplified */
.grid {
  display: grid !important;
  width: 100%;
}

.grid > * {
  min-width: 0;
  min-height: 0;
}

/* Extra specific rule for cards grid */
.grid.grid-cols-1.gap-8,
.grid.md\:grid-cols-3.gap-8 {
  gap: 2rem !important;
}

.grid-cols-1 { 
  grid-template-columns: 1fr; 
}
.grid-cols-2 { 
  grid-template-columns: 1fr 1fr; 
}
.grid-cols-3 { 
  grid-template-columns: 1fr 1fr 1fr; 
}
.grid-cols-4 { 
  grid-template-columns: 1fr 1fr 1fr 1fr; 
}

/* Gap Utilities - More Specific */
.grid.gap-0 { gap: 0 !important; }
.grid.gap-1 { gap: 0.25rem !important; }
.grid.gap-2 { gap: 0.5rem !important; }
.grid.gap-3 { gap: 0.75rem !important; }
.grid.gap-4 { gap: 1rem !important; }
.grid.gap-5 { gap: 1.25rem !important; }
.grid.gap-6 { gap: 1.5rem !important; }
.grid.gap-7 { gap: 1.75rem !important; }
.grid.gap-8 { gap: 2rem !important; }
.grid.gap-10 { gap: 2.5rem !important; }
.grid.gap-12 { gap: 3rem !important; }

/* Responsive Grid */
@media (min-width: 768px) {
  .md\:grid-cols-1 { 
    grid-template-columns: 1fr; 
  }
  .md\:grid-cols-2 { 
    grid-template-columns: 1fr 1fr; 
  }
  .md\:grid-cols-3 { 
    grid-template-columns: 1fr 1fr 1fr; 
  }
  .md\:grid-cols-4 { 
    grid-template-columns: 1fr 1fr 1fr 1fr; 
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-1 { 
    grid-template-columns: 1fr; 
  }
  .lg\:grid-cols-2 { 
    grid-template-columns: 1fr 1fr; 
  }
  .lg\:grid-cols-3 { 
    grid-template-columns: 1fr 1fr 1fr; 
  }
  .lg\:grid-cols-4 { 
    grid-template-columns: 1fr 1fr 1fr 1fr; 
  }
}

/* Flexbox Utilities */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }

.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }

.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-none { flex: none; }

/* Spacing Utilities - Fixed */
.space-y-0 > :not([hidden]) ~ :not([hidden]) { margin-top: var(--space-0); }
.space-y-1 > :not([hidden]) ~ :not([hidden]) { margin-top: var(--space-1); }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: var(--space-2); }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: var(--space-3); }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: var(--space-4); }
.space-y-5 > :not([hidden]) ~ :not([hidden]) { margin-top: var(--space-5); }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: var(--space-6); }
.space-y-8 > :not([hidden]) ~ :not([hidden]) { margin-top: var(--space-8); }

.space-x-0 > :not([hidden]) ~ :not([hidden]) { margin-left: var(--space-0); }
.space-x-1 > :not([hidden]) ~ :not([hidden]) { margin-left: var(--space-1); }
.space-x-2 > :not([hidden]) ~ :not([hidden]) { margin-left: var(--space-2); }
.space-x-3 > :not([hidden]) ~ :not([hidden]) { margin-left: var(--space-3); }
.space-x-4 > :not([hidden]) ~ :not([hidden]) { margin-left: var(--space-4); }
.space-x-6 > :not([hidden]) ~ :not([hidden]) { margin-left: var(--space-6); }

/* Margin Utilities */
.m-0 { margin: var(--space-0); }
.m-1 { margin: var(--space-1); }
.m-2 { margin: var(--space-2); }
.m-3 { margin: var(--space-3); }
.m-4 { margin: var(--space-4); }
.m-auto { margin: auto; }

.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }

.mt-0 { margin-top: var(--space-0); }
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.mt-12 { margin-top: var(--space-12); }

.mb-0 { margin-bottom: var(--space-0); }
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-10 { margin-bottom: var(--space-10); }
.mb-12 { margin-bottom: var(--space-12); }

.ml-0 { margin-left: var(--space-0); }
.ml-1 { margin-left: var(--space-1); }
.ml-2 { margin-left: var(--space-2); }
.ml-3 { margin-left: var(--space-3); }
.ml-4 { margin-left: var(--space-4); }

.mr-0 { margin-right: var(--space-0); }
.mr-1 { margin-right: var(--space-1); }
.mr-2 { margin-right: var(--space-2); }
.mr-3 { margin-right: var(--space-3); }
.mr-4 { margin-right: var(--space-4); }

/* Padding Utilities */
.p-0 { padding: var(--space-0); }
.p-1 { padding: var(--space-1); }
.p-2 { padding: var(--space-2); }
.p-3 { padding: var(--space-3); }
.p-4 { padding: var(--space-4); }
.p-5 { padding: var(--space-5); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }

.px-0 { padding-left: var(--space-0); padding-right: var(--space-0); }
.px-1 { padding-left: var(--space-1); padding-right: var(--space-1); }
.px-2 { padding-left: var(--space-2); padding-right: var(--space-2); }
.px-3 { padding-left: var(--space-3); padding-right: var(--space-3); }
.px-4 { padding-left: var(--space-4); padding-right: var(--space-4); }
.px-6 { padding-left: var(--space-6); padding-right: var(--space-6); }
.px-8 { padding-left: var(--space-8); padding-right: var(--space-8); }

.py-0 { padding-top: var(--space-0); padding-bottom: var(--space-0); }
.py-1 { padding-top: var(--space-1); padding-bottom: var(--space-1); }
.py-2 { padding-top: var(--space-2); padding-bottom: var(--space-2); }
.py-3 { padding-top: var(--space-3); padding-bottom: var(--space-3); }
.py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.py-6 { padding-top: var(--space-6); padding-bottom: var(--space-6); }
.py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }
.text-3xl { font-size: var(--text-3xl); }
.text-4xl { font-size: var(--text-4xl); }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.font-sans { font-family: var(--font-sans); }
.font-serif { font-family: var(--font-serif); }
.font-mono { font-family: var(--font-mono); }

.text-primary { color: var(--color-text); }
.text-accent { color: var(--color-accent); }
.text-sub { color: var(--color-sub); }
.text-bg { color: var(--color-bg); }

/* Width & Height */
.w-auto { width: auto; }
.w-2 { width: var(--space-2); }
.w-4 { width: var(--space-4); }
.w-5 { width: var(--space-5); }
.w-6 { width: var(--space-6); }
.w-8 { width: var(--space-8); }
.w-10 { width: var(--space-10); }
.w-12 { width: var(--space-12); }
.w-14 { width: var(--space-14); }
.w-16 { width: var(--space-16); }
.w-20 { width: var(--space-20); }
.w-24 { width: var(--space-24); }
.w-full { width: 100%; }

.h-auto { height: auto; }
.h-2 { height: var(--space-2); }
.h-4 { height: var(--space-4); }
.h-5 { height: var(--space-5); }
.h-6 { height: var(--space-6); }
.h-8 { height: var(--space-8); }
.h-10 { height: var(--space-10); }
.h-12 { height: var(--space-12); }
.h-14 { height: var(--space-14); }
.h-16 { height: var(--space-16); }
.h-20 { height: var(--space-20); }
.h-24 { height: var(--space-24); }
.h-full { height: 100%; }

.min-h-screen { min-height: 100vh; }

.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

/* Display */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.hidden { display: none; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-scroll { overflow: scroll; }

/* Z-Index */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:hidden { display: none; }
  .md\:flex { display: flex; }
  .md\:inline-flex { display: inline-flex; }
}

/* Alert Components */
.alert {
  padding: var(--space-4);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.alert-success {
  background: #f0f9f4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
}

.alert-warning {
  background: #fffbeb;
  border: 1px solid #fed7aa;
  color: #d97706;
}

.alert-info {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  color: #0369a1;
}

/* Admin status indicator styles removed */

/* Color Utilities */
.text-green-600 { color: #059669; }
.text-red-600 { color: #dc2626; }
.text-yellow-600 { color: #d97706; }
.text-blue-600 { color: #2563eb; }

.bg-primary { background-color: var(--color-text); }
.bg-accent { background-color: var(--color-accent); }
.bg-surface { background-color: var(--color-surface); }
.bg-bg { background-color: var(--color-bg); }

.bg-green-50 { background-color: #f0fdf4; }
.bg-red-50 { background-color: #fef2f2; }
.bg-yellow-50 { background-color: #fffbeb; }
.bg-blue-50 { background-color: #eff6ff; }

/* Border Utilities */
.border { border: 1px solid var(--color-border); }
.border-t { border-top: 1px solid var(--color-border); }
.border-b { border-bottom: 1px solid var(--color-border); }
.border-l { border-left: 1px solid var(--color-border); }
.border-r { border-right: 1px solid var(--color-border); }

/* Custom border classes for easier use */  
.border-border { border-color: var(--color-border); }

.border-0 { border: 0; }
.border-none { border: none; }

/* Rounded Utilities */
.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: var(--radius-sm); }
.rounded { border-radius: var(--radius); }
.rounded-md { border-radius: var(--radius); }
.rounded-lg { border-radius: calc(var(--radius) * 1.25); }
.rounded-xl { border-radius: calc(var(--radius) * 1.5); }
.rounded-full { border-radius: 50%; }

/* Loading States */
.skeleton {
  background: linear-gradient(90deg, var(--color-surface) 25%, var(--color-border) 50%, var(--color-surface) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Focus Management */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Admin dashboard styles removed */

/* Admin stat-card styles removed */

/* Admin quick actions, activity, and status styles removed */

/* Admin dashboard grid layout styles removed */

/* Chart Container */
.chart-container {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: var(--space-6);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  height: 400px;
}

.chart-container h3 {
  margin-bottom: var(--space-4);
  color: var(--color-text);
  font-size: var(--text-xl);
}

/* Additional Utility Classes */
.text-sub {
  color: var(--color-sub);
}

.text-primary {
  color: var(--color-text);
}

/* Navigation Enhancement */
.nav-link {
  transition: all 0.2s ease;
  text-decoration: none;
}

.nav-link:hover {
}

.nav-link.active {
  background: var(--color-accent);
  color: white;
}

/* Loading States */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  background: #ccc;
}

.btn:disabled:hover {
  transform: none;
  box-shadow: none;
  background: #ccc;
}

.btn:disabled::before {
  display: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  /* Admin responsive styles removed */
}

/* Print Styles */
@media print {
  * {
    background: white !important;
    color: black !important;
  }
}