/**
 * ============================================
 * ESPRIT CRÉATIF - ARTISTIC DESIGN SYSTEM
 * "Creative Canvas" by Senior Designer (22y @ Apple)
 * ============================================
 *
 * Design Philosophy:
 * 1. Minimalism Meets Art - Bold simplicity with creative flair
 * 2. Fluid & Alive - Everything moves with purpose
 * 3. Depth & Dimension - Sophisticated layering
 * 4. Typography as Graphics - Text becomes art
 * 5. Performance First - Buttery smooth 60fps
 */

/* ============================================
   ARTISTIC ANIMATIONS - Signature Moves
   ============================================ */

@keyframes inkSpread {
  0% {
    opacity: 0;
    transform: scale(0.8) rotate(0deg);
    filter: blur(10px);
  }
  50% {
    opacity: 0.2;
    filter: blur(5px);
  }
  100% {
    opacity: 0.3;
    transform: scale(1) rotate(3deg);
    filter: blur(0);
  }
}

@keyframes brushStroke {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes liquidMorph {
  0%, 100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: rotate(0deg);
  }
  25% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  50% {
    border-radius: 40% 60% 60% 40% / 40% 70% 60% 50%;
    transform: rotate(2deg);
  }
  75% {
    border-radius: 70% 30% 40% 60% / 60% 40% 70% 30%;
  }
}

@keyframes particleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translate(20px, -20px) scale(1.2);
    opacity: 0.7;
  }
  50% {
    transform: translate(-10px, -40px) scale(0.8);
    opacity: 0.4;
  }
  75% {
    transform: translate(-30px, -20px) scale(1.1);
    opacity: 0.6;
  }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes textReveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

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

@keyframes breathe {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

/* ============================================
   ARTISTIC HERO SECTION - Canvas Style
   ============================================ */

.artistic-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg,
    #fafaf9 0%,
    #f8f5ea 50%,
    #fff 100%);
}

.dark .artistic-hero {
  background: linear-gradient(135deg,
    #0c0a09 0%,
    #1c1917 50%,
    #000 100%);
}

/* Animated Background Mesh */
.mesh-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(242, 236, 212, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 165, 116, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(242, 236, 212, 0.15) 0%, transparent 70%);
  animation: breathe 8s ease-in-out infinite;
  pointer-events: none;
}

.dark .mesh-gradient {
  background:
    radial-gradient(circle at 20% 30%, rgba(242, 236, 212, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(242, 236, 212, 0.05) 0%, transparent 70%);
}

/* Creative Particles System */
.art-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.art-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, rgba(242, 236, 212, 0.8) 0%, transparent 70%);
  border-radius: 50%;
  animation: particleFloat 15s ease-in-out infinite;
}

.art-particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.art-particle:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: -5s;
}

.art-particle:nth-child(3) {
  top: 80%;
  left: 30%;
  animation-delay: -10s;
}

.art-particle:nth-child(4) {
  top: 40%;
  left: 70%;
  animation-delay: -3s;
}

.art-particle:nth-child(5) {
  top: 10%;
  left: 90%;
  animation-delay: -7s;
}

/* ============================================
   TYPOGRAPHY AS ART - Display Text
   ============================================ */

.artistic-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  position: relative;
  animation: textReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.artistic-title .word {
  display: inline-block;
  overflow: hidden;
}

.artistic-title .char {
  display: inline-block;
  transform: translateY(100%);
  animation: textReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Gradient Text with Animation */
.gradient-text-animated {
  background: linear-gradient(
    90deg,
    #f2ecd4 0%,
    #d4a574 25%,
    #f2ecd4 50%,
    #d4a574 75%,
    #f2ecd4 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 8s linear infinite;
}

/* Shimmer Text Effect */
.shimmer-text {
  position: relative;
  background: linear-gradient(
    90deg,
    #181714 0%,
    #181714 40%,
    #f2ecd4 50%,
    #181714 60%,
    #181714 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.dark .shimmer-text {
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #ffffff 40%,
    #f2ecd4 50%,
    #ffffff 60%,
    #ffffff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   LIQUID GLASS CARD 2.0 - Enhanced Version
   ============================================ */

.art-card {
  position: relative;
  padding: 3rem;
  border-radius: 2.5rem;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(250, 250, 249, 0.9) 100%);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1.5px solid rgba(242, 236, 212, 0.4);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 8px 20px rgba(242, 236, 212, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(0, 0, 0, 0.02);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  transform-style: preserve-3d;
}

.dark .art-card {
  background:
    linear-gradient(135deg,
      rgba(28, 25, 23, 0.95) 0%,
      rgba(12, 10, 9, 0.9) 100%);
  border-color: rgba(242, 236, 212, 0.2);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 8px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(242, 236, 212, 0.15);
}

/* Morphing Border Animation */
.art-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    135deg,
    rgba(242, 236, 212, 0.6),
    rgba(212, 165, 116, 0.6),
    rgba(242, 236, 212, 0.6)
  );
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  filter: blur(10px);
}

.art-card:hover::before {
  opacity: 1;
  animation: liquidMorph 10s ease-in-out infinite;
}

/* Ink Splash on Hover */
.art-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(242, 236, 212, 0.3) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.art-card:hover::after {
  opacity: 0.3;
  transform: scale(1.5) translate(-20%, -20%);
  animation: inkSpread 1.2s ease-out;
}

.art-card:hover {
  transform: translateY(-12px) scale(1.02) rotateX(2deg);
  box-shadow:
    0 40px 100px rgba(242, 236, 212, 0.3),
    0 20px 40px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(242, 236, 212, 0.8);
}

.dark .art-card:hover {
  box-shadow:
    0 40px 100px rgba(242, 236, 212, 0.15),
    0 20px 40px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(242, 236, 212, 0.3);
}

/* ============================================
   ARTISTIC BUTTON - Premium Touch
   ============================================ */

.art-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.25rem 2.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  isolation: isolate;
  cursor: pointer;
  border: none;
  outline: none;
}

.art-btn-primary {
  background: linear-gradient(135deg, #f2ecd4 0%, #d4a574 100%);
  color: #181714;
  box-shadow:
    0 4px 20px rgba(242, 236, 212, 0.5),
    0 1px 3px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* Animated Gradient Background */
.art-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #d4a574 0%,
    #f2ecd4 50%,
    #d4a574 100%
  );
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  animation: gradientShift 3s ease-in-out infinite;
}

.art-btn-primary:hover::before {
  opacity: 1;
}

/* Ripple Effect */
.art-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.art-btn:active::after {
  width: 300px;
  height: 300px;
}

.art-btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 12px 40px rgba(242, 236, 212, 0.7),
    0 4px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.art-btn-primary:active {
  transform: translateY(-1px) scale(1.02);
}

/* Icon Animation */
.art-btn i {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
}

.art-btn:hover i {
  transform: translateX(5px) rotate(5deg);
}

/* Secondary Button - Ghost Style */
.art-btn-secondary {
  background: transparent;
  color: #181714;
  border: 2.5px solid rgba(242, 236, 212, 0.5);
  backdrop-filter: blur(20px);
}

.dark .art-btn-secondary {
  color: #f2ecd4;
  border-color: rgba(242, 236, 212, 0.3);
}

.art-btn-secondary:hover {
  background: rgba(242, 236, 212, 0.15);
  border-color: rgba(242, 236, 212, 0.8);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(242, 236, 212, 0.3);
}

/* ============================================
   ARTISTIC BADGE - Premium Pill
   ============================================ */

.art-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  background: linear-gradient(
    135deg,
    rgba(242, 236, 212, 0.25) 0%,
    rgba(212, 165, 116, 0.25) 100%
  );
  backdrop-filter: blur(20px) saturate(180%);
  border: 1.5px solid rgba(242, 236, 212, 0.4);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #181714;
  box-shadow:
    0 4px 16px rgba(242, 236, 212, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dark .art-badge {
  background: linear-gradient(
    135deg,
    rgba(242, 236, 212, 0.15) 0%,
    rgba(212, 165, 116, 0.15) 100%
  );
  color: #f2ecd4;
  border-color: rgba(242, 236, 212, 0.3);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(242, 236, 212, 0.2);
}

.art-badge:hover {
  transform: scale(1.05);
  box-shadow:
    0 8px 24px rgba(242, 236, 212, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Pulsing Dot Indicator */
.art-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: #d4a574;
  border-radius: 50%;
  position: relative;
  animation: breathe 2s ease-in-out infinite;
}

.art-badge .pulse-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: inherit;
  border-radius: 50%;
  opacity: 0.4;
  animation: breathe 2s ease-in-out infinite;
  animation-delay: 0.5s;
}

/* ============================================
   SECTION TRANSITIONS - Brush Stroke Style
   ============================================ */

.section-reveal {
  animation: brushStroke 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.section-reveal.visible {
  opacity: 1;
}

/* ============================================
   PARALLAX LAYERS - Depth System
   ============================================ */

.parallax-container {
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.parallax-layer {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.parallax-layer-front {
  transform: translateZ(50px) scale(0.95);
}

.parallax-layer-mid {
  transform: translateZ(25px) scale(0.975);
}

.parallax-layer-back {
  transform: translateZ(0);
}

/* ============================================
   ARTISTIC ICON CONTAINER
   ============================================ */

.art-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 1.75rem;
  background: linear-gradient(135deg, #f2ecd4 0%, #d4a574 100%);
  box-shadow:
    0 12px 32px rgba(242, 236, 212, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.7),
    inset 0 -2px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.art-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #d4a574 0%, #f2ecd4 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.art-icon:hover::before {
  opacity: 1;
}

.art-icon:hover {
  transform: scale(1.15) rotate(-5deg);
  box-shadow:
    0 20px 50px rgba(242, 236, 212, 0.7),
    inset 0 2px 0 rgba(255, 255, 255, 1);
}

.art-icon i {
  font-size: 2rem;
  color: #181714;
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.art-icon:hover i {
  transform: scale(1.1) rotate(5deg);
}

/* ============================================
   FLUID GRID SYSTEM - Masonry Style
   ============================================ */

.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .art-grid {
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .art-grid {
    gap: 3rem;
  }
}

/* Staggered Animation */
.art-grid > * {
  animation: textReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.art-grid > *:nth-child(1) { animation-delay: 0.1s; }
.art-grid > *:nth-child(2) { animation-delay: 0.2s; }
.art-grid > *:nth-child(3) { animation-delay: 0.3s; }
.art-grid > *:nth-child(4) { animation-delay: 0.4s; }
.art-grid > *:nth-child(5) { animation-delay: 0.5s; }
.art-grid > *:nth-child(6) { animation-delay: 0.6s; }

/* ============================================
   ARTISTIC DIVIDER - Creative Separator
   ============================================ */

.art-divider {
  position: relative;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(242, 236, 212, 0.3) 20%,
    rgba(212, 165, 116, 0.6) 50%,
    rgba(242, 236, 212, 0.3) 80%,
    transparent 100%
  );
  margin: 4rem 0;
  overflow: hidden;
}

.art-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: radial-gradient(
    circle,
    rgba(242, 236, 212, 0.8) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: breathe 3s ease-in-out infinite;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
  .art-card {
    padding: 2rem;
    border-radius: 2rem;
  }

  .art-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .art-icon {
    width: 4rem;
    height: 4rem;
  }

  .art-icon i {
    font-size: 1.5rem;
  }
}

/* ============================================
   ACCESSIBILITY ENHANCEMENTS
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus States - Apple Style */
.art-btn:focus-visible,
.art-card:focus-visible {
  outline: 3px solid rgba(242, 236, 212, 0.8);
  outline-offset: 4px;
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */

.art-card,
.art-btn,
.art-icon {
  will-change: transform;
}

.art-card:hover,
.art-btn:hover,
.art-icon:hover {
  will-change: transform, box-shadow;
}

/* GPU Acceleration */
.parallax-layer,
.mesh-gradient,
.art-particles {
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* ============================================
   ADMIN PANEL STYLES
   ============================================ */

/* Main Content Layout */
.main-content {
  margin-left: 280px;
  margin-top: 70px;
  padding: 2rem;
  min-height: calc(100vh - 70px);
  background: #fafaf9;
}

@media (max-width: 1024px) {
  .main-content {
    margin-left: 0;
    padding: 1.5rem;
  }
}

.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

/* Page Header */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #181714;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.page-title i {
  color: #d4a574;
}

.page-subtitle {
  font-size: 1.125rem;
  color: #78716c;
  font-weight: 400;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: white;
  border-radius: 1.5rem;
  padding: 1.75rem;
  border: 2px solid rgba(242, 236, 212, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(242, 236, 212, 0.25);
  border-color: rgba(242, 236, 212, 0.6);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, #f2ecd4 0%, #d4a574 100%);
  box-shadow: 0 4px 12px rgba(242, 236, 212, 0.4);
}

.stat-icon i {
  font-size: 1.75rem;
  color: #181714;
}

.stat-content {
  flex: 1;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #78716c;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.375rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #181714;
  line-height: 1;
}

/* Alerts */
.alert {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.alert i {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.alert-error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
  border: 2px solid rgba(239, 68, 68, 0.3);
  color: #991b1b;
}

.alert-error i {
  color: #ef4444;
}

.alert-success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
  border: 2px solid rgba(16, 185, 129, 0.3);
  color: #065f46;
}

.alert-success i {
  color: #10b981;
}

.alert-warning {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.1));
  border: 2px solid rgba(245, 158, 11, 0.3);
  color: #92400e;
}

.alert-warning i {
  color: #f59e0b;
}

/* Data Table */
.table-responsive {
  overflow-x: auto;
  border-radius: 1rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.data-table thead {
  background: linear-gradient(135deg, rgba(242, 236, 212, 0.2), rgba(212, 165, 116, 0.2));
}

.data-table thead tr {
  border-bottom: 2px solid rgba(242, 236, 212, 0.4);
}

.data-table th {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 700;
  color: #181714;
  text-transform: uppercase;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
}

.data-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(242, 236, 212, 0.2);
  color: #44403c;
}

.data-table tbody tr {
  transition: all 0.2s ease;
}

.data-table tbody tr:hover {
  background: rgba(242, 236, 212, 0.1);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/* Icon Buttons */
.btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 1rem;
}

.btn-edit {
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.2);
  background: rgba(59, 130, 246, 0.05);
}

.btn-edit:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-delete {
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.2);
  background: rgba(239, 68, 68, 0.05);
}

.btn-delete:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.4);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-view {
  color: #10b981;
  border-color: rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.05);
}

.btn-view:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Responsive Tables */
@media (max-width: 768px) {
  .data-table {
    font-size: 0.875rem;
  }

  .data-table th,
  .data-table td {
    padding: 1rem;
  }
}
