@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #0ea5e9;
  --primary-hover: #0284c7;
  --secondary: #0d9488;
  --secondary-hover: #0f766e;
  --dark: #0f172a;
  --dark-light: #1e293b;
  --light: #f8fafc;
  --white: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --grad-primary: linear-gradient(135deg, #0ea5e9 0%, #0d9488 100%);
  --grad-dark: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  --grad-accent: linear-gradient(135deg, #38bdf8 0%, #2dd4bf 100%);
  
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: 1px solid rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.08);
  --glass-blur: blur(12px);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-title: 'Outfit', sans-serif;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--light);
}
::-webkit-scrollbar-thumb {
  background: var(--text-light);
  border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: var(--glass-border);
  box-shadow: var(--glass-shadow);
  height: 80px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.navbar.scrolled {
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--grad-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.logo-icon.has-logo {
  background: transparent;
  box-shadow: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  background: var(--grad-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-subtitle {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-btn {
  background: var(--grad-primary);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.2);
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
  color: var(--white);
}

/* Hero Section */
.hero {
  padding: 160px 0 100px 0;
  background: radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(13, 148, 136, 0.05) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, var(--light), transparent);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content h1 span {
  background: var(--grad-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35);
}

.btn-secondary {
  background: var(--white);
  color: var(--dark);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.btn-secondary:hover {
  background: var(--light);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-card-avatar {
  width: 60px;
  height: 60px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
}

.hero-card-userinfo h4 {
  font-size: 18px;
}

.hero-card-userinfo p {
  font-size: 13px;
  color: var(--text-muted);
}

.hero-card-body {
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-card-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.hero-card-row:last-child {
  border-bottom: none;
}

.hero-card-row span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.hero-card-row strong {
  font-size: 13px;
  color: var(--dark);
}

.hero-badge-status {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(13, 148, 136, 0.1);
  color: var(--secondary);
  border: 1px solid rgba(13, 148, 136, 0.2);
}

/* Stats Section */
.stats {
  padding: 40px 0;
  background: var(--white);
  position: relative;
  z-index: 10;
  box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.02);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(15, 23, 42, 0.05);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-title);
  font-size: 38px;
  font-weight: 800;
  background: var(--grad-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Features Section */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.section-title h2 span {
  background: var(--grad-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
}

.features {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  border: 1px solid rgba(15, 23, 42, 0.03);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  border-color: rgba(14, 165, 233, 0.1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(14, 165, 233, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 24px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--grad-primary);
  color: var(--white);
  transform: rotate(6deg);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.feature-link {
  font-weight: 700;
  font-size: 13px;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.feature-link:hover {
  gap: 10px;
}

/* News Section */
.news-section {
  padding: 100px 0;
  background: rgba(14, 165, 233, 0.02);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.03);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.news-img {
  width: 100%;
  height: 200px;
  background: var(--grad-dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.1);
  font-size: 48px;
}

.news-img::after {
  content: '📰';
  position: absolute;
}

.news-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 12px;
}

.news-card h3 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 8px;
  font-weight: 700;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-link {
  font-weight: 700;
  font-size: 13px;
  color: var(--primary);
  margin-top: auto;
}

/* Profil Halaman */
.page-header {
  padding: 140px 0 60px 0;
  background: var(--grad-dark);
  color: var(--white);
  text-align: center;
  position: relative;
}

.page-header h1 {
  color: var(--white);
  font-size: 40px;
  margin-bottom: 8px;
}

.page-header p {
  color: var(--text-light);
  font-size: 15px;
}

.profile-section {
  padding: 80px 0;
}

.profile-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  margin-bottom: 40px;
  border: 1px solid rgba(15, 23, 42, 0.03);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

.profile-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(14, 165, 233, 0.1);
  padding-bottom: 12px;
  color: var(--primary);
}

.misi-list {
  list-style: none;
}

.misi-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 15px;
}

.misi-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: rgba(13, 148, 136, 0.1);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.aparat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.aparat-card {
  background: var(--light);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(15, 23, 42, 0.02);
  transition: var(--transition);
}

.aparat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 165, 233, 0.1);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03);
}

.aparat-avatar {
  width: 72px;
  height: 72px;
  background: var(--grad-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  font-size: 28px;
  font-weight: 700;
}

.aparat-card h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.aparat-card p {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 30px 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo-title {
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.footer-text {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-light);
  display: flex;
  gap: 12px;
}

.footer-links-title {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-links-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--primary);
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  color: var(--text-light);
  font-size: 14px;
}

.footer-menu a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
}

/* Responsif */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .features-grid, .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  }
  .stat-item:nth-child(2n) {
    border-right: none;
  }
  .aparat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  /* Responsive Aparat grid spans */
  .aparat-kades {
    grid-column: span 2 !important;
  }
  .aparat-sekdes {
    grid-column: span 1 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .aparat-staff-first {
    grid-column: span 1 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Hamburger Toggle & Responsive Menu Drawer styles */
  .menu-toggle {
    display: flex !important;
  }

  .nav-menu {
    position: absolute;
    top: -460px; /* Sembunyikan di atas navbar */
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    gap: 18px;
    list-style: none;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 999;
  }

  .nav-menu.active {
    top: 80px; /* Muncul tepat di bawah navbar */
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-menu .nav-link {
    display: block;
    width: 100%;
    padding: 8px 0;
    font-size: 15px;
  }

  .nav-menu .nav-btn {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 8px auto 0 auto;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .features-grid, .news-grid, .aparat-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 32px;
  }
  
  /* Reset grid spans for single column on mobile */
  .aparat-kades, .aparat-sekdes, .aparat-staff-first {
    grid-column: span 1 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Mobile Bottom Navigation Layout Activation */
  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom)) !important;
  }
  
  .bottom-nav {
    display: flex !important;
  }

  /* Keuangan Page Mobile Fine-Tuning */
  .keuangan-kades-panel {
    flex-direction: column !important;
    text-align: center !important;
    gap: 20px !important;
    padding: 20px !important;
  }
  
  .keuangan-kades-avatar {
    margin: 0 auto !important;
  }
  
  .keuangan-kades-quote {
    min-width: 100% !important;
  }
}

/* Base Hamburger button classes */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Hamburger transformations for active state */
.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}


/* Helper grid styles on desktop */
.aparat-kades {
  grid-column: span 4;
  max-width: 280px;
  margin: 0 auto 20px auto;
  border-color: rgba(14, 165, 233, 0.2) !important;
  background: rgba(14, 165, 233, 0.03) !important;
}

.aparat-sekdes {
  grid-column: 1 / span 2;
  max-width: 280px;
  margin-left: auto;
  width: 100%;
}

.aparat-staff-first {
  grid-column: 3 / span 2;
  max-width: 280px;
  margin-right: auto;
  width: 100%;
}

/* ==========================================================================
   MOBILE BOTTOM NAVIGATION BAR (PWA / APK NATIVE STYLE - ICON ONLY)
   ========================================================================== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 56px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-top: var(--glass-border);
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.06);
  display: none; /* Tersembunyi di desktop */
  justify-content: space-around;
  align-items: center;
  z-index: 2000; /* Di atas elemen halaman dan sidebar */
  padding-bottom: env(safe-area-inset-bottom);
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  flex: 1;
  height: 100%;
  transition: var(--transition);
  position: relative;
}

.nav-icon-svg {
  width: 24px;
  height: 24px;
  stroke: var(--text-muted);
  fill: none;
  transition: var(--transition);
  margin-bottom: 0;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
  color: var(--primary);
}

.bottom-nav-item:hover .nav-icon-svg,
.bottom-nav-item.active .nav-icon-svg {
  stroke: var(--primary);
}

.bottom-nav-item.active .nav-icon-svg {
  transform: translateY(-4px) scale(1.12);
  filter: drop-shadow(0 2px 6px rgba(14, 165, 233, 0.4));
}

/* Glow active indicator dot */
.bottom-nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 6px;
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
}


/* ==========================================================================
   PUBLIC TRANSPARANSI KEUANGAN (APBDes) UTILITIES & LAYOUT FIXES
   ========================================================================== */
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
}

.table-responsive th,
.table-responsive td {
  white-space: nowrap !important;
}

.table-custom {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 14px;
}

.table-custom th,
.table-custom td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.table-custom th {
  background-color: var(--light);
  color: var(--text-dark);
  font-weight: 700;
  font-family: var(--font-title);
}

.table-custom tbody tr:hover {
  background-color: rgba(14, 165, 233, 0.02);
}

/* Badges styling */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-success {
  background: rgba(16, 185, 129, 0.1) !important;
  color: #10b981 !important;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-danger {
  background: rgba(239, 68, 68, 0.1) !important;
  color: #ef4444 !important;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.badge-pending {
  background: rgba(245, 158, 11, 0.1) !important;
  color: #f59e0b !important;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.badge-process {
  background: rgba(59, 130, 246, 0.1) !important;
  color: #3b82f6 !important;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Form Search styling */
.form-control {
  width: 100%;
  padding: 10px 16px;
  font-size: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  color: var(--text-dark);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.card-panel {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

