@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  /* Primary Green & Secondary Orange Theme */
  --themeColor: #508C01;
  --themeColorDark: #3d6900;
  --accentColor: #F6AD01;
  --primaryColor: #000000;
  --secondaryColor: #FFFFFF;
  --blackColor: #000000;
  --whiteColor: #FFFFFF;
  --textcolor: #000000;
  --textLightColor: #000000;
  --borderColor: #FFFFFF;
  --cardBg: #FFFFFF;
  --sidebarBg: rgba(255, 255, 255, 0.95);
  --hoverColor: #FFFFFF;
  --shadowColor: rgba(0, 0, 0, 0.05);
  --shadowHover: rgba(80, 140, 1, 0.12);

  /* Modern Gradients - Green & Orange */
  --gradientPrimary: linear-gradient(135deg, #508C01 0%, #F6AD01 100%);
  --gradientPurple: linear-gradient(135deg, #F6AD01 0%, #508C01 100%);
  --gradientCyan: linear-gradient(135deg, #508C01 0%, #F6AD01 100%);
  --gradientGreen: linear-gradient(135deg, #508C01 0%, #3d6900 100%);
  --gradientOrange: linear-gradient(135deg, #F6AD01 0%, #E8A200 100%);
}

/* Base Styles */
* {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  line-height: normal !important;
}

body {
  margin: 0;
  padding: 0;
  height: 100dvh;
  box-sizing: border-box;
  line-height: normal;
  background-color: var(--secondaryColor) !important;
}

a {
  text-decoration: none !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--themeColor);
  border-radius: 10px;
}

body::-webkit-scrollbar {
  width: 5px;
}

body::-webkit-scrollbar-track {
  background: var(--secondaryColor);
}

body::-webkit-scrollbar-thumb {
  background: var(--themeColor);
  border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
  background: var(--themeColorDark);
}

.sidebar::-webkit-scrollbar {
  width: 6px;
}

.sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
  background: var(--borderColor);
  border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background: var(--themeColor);
}

.main-content::-webkit-scrollbar {
  width: 8px;
}

.main-content::-webkit-scrollbar-track {
  background: var(--secondaryColor);
}

.main-content::-webkit-scrollbar-thumb {
  background: var(--themeColor);
  border-radius: 10px;
}

.main-content::-webkit-scrollbar-thumb:hover {
  background: var(--themeColorDark);
}

/* Font Sizes */
.font-40 {
  font-size: clamp(28px, 3.5vw, 40px);
}

.font-28 {
  font-size: clamp(20px, 2.5vw, 28px);
}

.font-26 {
  font-size: clamp(1.125rem, 1.0199rem + 0.5096vw, 1.625rem);
}

.font-24 {
  font-size: clamp(1rem, 0.8949rem + 0.5096vw, 1.5rem);
}

.font-20 {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
}

.font-18 {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem) !important;
}

.font-16 {
  font-size: clamp(0.75rem, 0.6994rem + 0.2532vw, 1rem);
}

.font-15 {
  font-size: clamp(0.8125rem, 0.7813rem + 0.1563vw, 0.9375rem);
}

.font-14 {
  font-size: clamp(0.6875rem, 0.65rem + 0.1875vw, 0.875rem) !important;
}

.font-13 {
  font-size: clamp(0.75rem, 0.7188rem + 0.1563vw, 0.8125rem);
}

.font-12 {
  font-size: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem);
}

/* Gaps */
.scalable-gap-24-16 {
  gap: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
}

.scalable-gap-20 {
  gap: clamp(1rem, 0.9322rem + 0.339vw, 1.25rem);
}

.scalable-gap-16-12 {
  gap: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
}

.scalable-gap-12 {
  gap: 12px;
}

/* Font Weights */
.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.extrabold {
  font-weight: 800;
}

/* Colors */
.primaryColor {
  color: var(--primaryColor);
}

.themeColor {
  color: var(--themeColor);
}

.textLight {
  color: var(--textLightColor);
}

.cursor-pointer {
  cursor: pointer;
}

/* Dashboard Layout */
.dashboard-wrapper {
  background-color: var(--secondaryColor);
}

/* Sidebar */
.sidebar {
  width: 280px;
  background: var(--gradientPrimary);
  border-right: none;
  height: 100vh;
  overflow-y: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  box-shadow: 4px 0 24px rgba(80, 140, 1, 0.3);
  display: flex;
  flex-direction: column;
}

.sidebar .sidebar-logo-mini {
  display: none;
}

.sidebar.collapsed {
  width: 80px;
}

.sidebar.collapsed .sidebar-logo-mini {
  display: block;
  width: 50px;
  border-radius: 6px;
}

.sidebar.collapsed .sidebar-logo-img {
  display: none;
}

.sidebar.collapsed .sidebar-header span {
  display: none;
}

.sidebar.collapsed .menu-item span {
  display: none;
}

.sidebar.collapsed .submenu-arrow {
  display: none;
}

.sidebar.collapsed .menu-item {
  justify-content: center;
  padding: 14px;
}

.sidebar.collapsed .logo {
  justify-content: center;
}

/* Modern Sidebar Header */
.sidebar-header-modern {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-logo-img {
  max-width: 90px;
  height: auto;
  border-radius: 8px;
}

/* Modern Sidebar Menu */
.sidebar-menu-modern {
  padding: 1rem 0.75rem;
  flex: 1;
  overflow-y: auto;
}

.sidebar-menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 10px;
  margin-bottom: 0.25rem;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.sidebar-menu-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 12px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

.sidebar-menu-item:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  transform: translateX(4px);
}

.sidebar-menu-item:hover::before {
  opacity: 1;
}

.sidebar-menu-item.active {
  background: rgb(255 255 255 / 0%);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  font-weight: 600;
  position: relative;
  border-left: 4px solid white;
  padding-left: 6px;
}

.sidebar-menu-item.active::before {
  opacity: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.sidebar-menu-item.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  border-radius: 12px 12px 0 0;
}

.sidebar-menu-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  color: white;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.sidebar-menu-item:hover .sidebar-menu-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.sidebar-menu-item.active .sidebar-menu-icon {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.3);
  transform: scale(1.08);
}

.sidebar-menu-text {
  font-size: 14px;
  font-weight: 600;
  flex: 1;
}

.sidebar-submenu-arrow {
  font-size: 11px;
  transition: transform 0.3s ease;
  margin-left: auto;
}

.sidebar-menu-item.has-submenu.open .sidebar-submenu-arrow {
  transform: rotate(180deg);
}

.sidebar-menu-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--themeColor);
  margin-left: auto;
  box-shadow: 0 0 8px var(--themeColor);
}

/* Sidebar Submenu */
.sidebar-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-left: 2.75rem;
  margin-bottom: 0.25rem;
}

.sidebar-submenu.open {
  max-height: 500px;
}

.sidebar-submenu-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.15rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.sidebar-submenu-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateX(4px);
}

.sidebar-submenu-item.active {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  font-weight: 600;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.2);
  border-left: 3px solid white;
  padding-left: 7px;
}

.sidebar-submenu-item.active .sidebar-submenu-dot {
  color: white;
  background: white;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.sidebar-submenu-dot {
  font-size: 5px;
  color: rgba(255, 255, 255, 0.5);
}

.sidebar-submenu-item:hover .sidebar-submenu-dot {
  color: white;
}

/* Sidebar Footer */
.sidebar-footer-modern {
  padding: 1rem 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: auto;
}

.sidebar-user-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.sidebar-user-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sidebar-user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.sidebar-user-info {
  flex: 1;
  min-width: 0;
}

.sidebar-user-name {
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-user-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

.sidebar-user-status i {
  font-size: 7px;
  color: var(--themeColor);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* Sidebar Scrollbar */
.sidebar::-webkit-scrollbar {
  width: 6px;
}

.sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Old styles for compatibility */
.sidebar-header {
  padding: 32px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05, 0.6);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.95, 0.8) 100%);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  background: var(--gradientPrimary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  gap: 12px;
  filter: drop-shadow(0 2px 4px rgba(80, 140, 1, 0.2));
}

.logo i {
  background: var(--gradientPrimary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sidebar-menu {
  padding: 24px 0;
}

.menu-item {
  padding: 14px 20px;
  margin: 6px 12px;
  gap: 14px;
  color: var(--textcolor);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}

.menu-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--gradientPrimary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  border-radius: 0 4px 4px 0;
}

.menu-item:hover::before {
  transform: scaleY(1);
}

.menu-item:hover {
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.08) 0%, rgba(80, 140, 1, 0.08) 100%);
  color: var(--themeColor);
  transform: translateX(6px);
  box-shadow: 0 4px 12px rgba(80, 140, 1, 0.1);
}

.menu-item.active {
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.12) 0%, rgba(80, 140, 1, 0.12) 100%);
  color: var(--themeColor);
  box-shadow: 0 4px 16px rgba(80, 140, 1, 0.2);
  font-weight: 600;
}

.menu-item.active::before {
  transform: scaleY(1);
}

.menu-item i {
  width: 24px;
}

.menu-item span {
  white-space: nowrap;
}

.menu-item.has-submenu .submenu-arrow {
  transition: transform 0.3s ease;
}

.menu-item.has-submenu.open .submenu-arrow {
  transform: rotate(180deg);
}

/* Submenu */
.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9, 0.6) 0%, rgba(255, 255, 255, 0.95, 0.8) 100%);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  margin: 4px 12px;
}

.submenu.open {
  max-height: 1000px;
  padding: 8px 0;
}

.submenu-item {
  padding: 12px 20px 12px 50px;
  color: var(--textcolor);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border-radius: 10px;
  margin: 2px 8px;
  position: relative;
}

.submenu-item::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--themeColor);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.submenu-item:hover::before {
  opacity: 1;
  left: 24px;
}

.submenu-item:hover {
  background: rgba(80, 140, 1, 0.08);
  color: var(--themeColor);
  padding-left: 56px;
  box-shadow: 0 2px 8px rgba(80, 140, 1, 0.1);
}

/* Main Content */
.main-content {
  margin-left: 280px;
  padding: 0;
  width: calc(100% - 280px);
  transition: all 0.3s ease;
}

.main-content.expanded {
  margin-left: 80px;
  width: calc(100% - 80px);
}

/* Top Header */
.top-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: clamp(16px, 2vw, 20px) clamp(24px, 3vw, 36px);
  border-radius: 28px;
  margin-bottom: clamp(24px, 3vw, 36px);
  box-shadow: 0 10px 40px rgba(80, 140, 1, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
  border: 2px solid rgba(0, 0, 0, 0.05, 0.6);
  top: clamp(12px, 2vw, 24px);
  z-index: 999;
}

.toggle-btn {
  width: clamp(40px, 5vw, 48px);
  height: clamp(40px, 5vw, 48px);
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.05, 0.8);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.95, 0.9) 100%);
  color: var(--textcolor);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.toggle-btn:hover {
  background: var(--gradientPrimary);
  color: white;
  border-color: transparent;
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(80, 140, 1, 0.3);
}

.search-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95, 0.95) 0%, rgba(255, 255, 255, 0.9, 0.95) 100%);
  padding: 16px 28px;
  border-radius: 20px;
  gap: 16px;
  border: 2px solid rgba(0, 0, 0, 0.05, 0.8);
  min-width: 360px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.search-box:hover {
  border-color: var(--themeColor);
  box-shadow: 0 6px 20px rgba(80, 140, 1, 0.15);
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-2px);
}

.search-input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  color: var(--textcolor);
}

.search-input::placeholder {
  color: var(--textLightColor);
}

.icon-btn {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  border: 2px solid rgba(0, 0, 0, 0.05, 0.8);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.95, 0.95) 100%);
  color: var(--textcolor);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.icon-btn:hover {
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.12) 0%, rgba(80, 140, 1, 0.12) 100%);
  border-color: var(--themeColor);
  color: var(--themeColor);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(80, 140, 1, 0.2);
}

.notification-badge {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
  color: black;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  top: -5px;
  right: -5px;
  box-shadow: 0 3px 10px rgba(246, 173, 1, 0.4);
  border: 2px solid white;
}

.user-profile {
  gap: 16px;
  padding: 14px 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.95, 0.95) 100%);
  border-radius: 22px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(0, 0, 0, 0.05, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.user-profile:hover {
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.1) 0%, rgba(80, 140, 1, 0.1) 100%);
  box-shadow: 0 8px 24px rgba(80, 140, 1, 0.2);
  transform: translateY(-3px);
  border-color: rgba(80, 140, 1, 0.4);
}

.user-avatar {
  width: clamp(40px, 5vw, 46px);
  height: clamp(40px, 5vw, 46px);
  border-radius: 50%;
  background: var(--gradientPrimary);
  color: white;
  box-shadow: 0 4px 16px rgba(80, 140, 1, 0.4);
  border: 2px solid white;
}

/* Dropdown Menu */
.dropdown-menu {
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.05, 0.6);
  box-shadow: 0 12px 40px var(--shadowHover), 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 10px;
  margin-top: 14px;
  min-width: 240px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.dropdown-item {
  border-radius: 12px;
  padding: 12px 18px;
  color: var(--textcolor);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.1) 0%, rgba(80, 140, 1, 0.1) 100%);
  color: var(--themeColor);
  transform: translateX(4px);
}

.dropdown-item i {
  width: 22px;
}

.dropdown-divider {
  margin: 10px 0;
  border-color: rgba(0, 0, 0, 0.05, 0.6);
}

/* Referral Section */
.referral-section {
  margin-bottom: 32px;
}

.referral-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.98, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: clamp(24px, 3vw, 32px) clamp(28px, 4vw, 40px);
  border-radius: 28px;
  border: 2px solid rgba(0, 0, 0, 0.05, 0.6);
  box-shadow: 0 12px 40px rgba(80, 140, 1, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.referral-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradientPrimary);
}

.referral-content {
  position: relative;
  z-index: 1;
}

.referral-icon-wrapper {
  position: relative;
}

.referral-icon-wrapper::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: var(--gradientPrimary);
  border-radius: 20px;
  opacity: 0.15;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.15;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.25;
  }
}

.referral-icon {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  background: var(--gradientPrimary);
  color: white;
  box-shadow: 0 10px 28px rgba(80, 140, 1, 0.4);
  position: relative;
  z-index: 1;
}

.referral-text {
  flex: 1;
  min-width: 0;
}

.referral-input-wrapper {
  background: rgba(255, 255, 255, 0.95, 0.9);
  border: 2px solid rgba(0, 0, 0, 0.05, 0.8);
  border-radius: 18px;
  padding: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.03);
}

.referral-input-wrapper:hover {
  border-color: rgba(80, 140, 1, 0.4);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.02);
}

.referral-input {
  border: none;
  background: transparent;
  padding: 10px 16px;
  border-radius: 12px;
  color: var(--textcolor);
  width: 100%;
  min-width: 280px;
  outline: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.referral-input:focus {
  background: rgba(255, 255, 255, 0.9);
}

.referral-actions {
  flex-shrink: 0;
}

.copy-btn {
  padding: 16px 32px;
  border-radius: 16px;
  border: 2px solid rgba(0, 0, 0, 0.05, 0.8);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.95, 0.95) 100%);
  color: var(--textcolor);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  font-weight: 600;
}


.copy-btn span,
.copy-btn i {
  position: relative;
  z-index: 1;
}

.fa-calendar-alt {
  color: var(--primaryColor) !important;
}

.refer-btn {
  padding: 16px 32px;
  border-radius: 16px;
  border: none;
  background: var(--gradientPrimary);
  color: white;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(80, 140, 1, 0.4);
  position: relative;
  overflow: hidden;
  font-weight: 600;
}

.refer-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(80, 140, 1, 0.45);
}

.refer-btn span,
.refer-btn i {
  position: relative;
  z-index: 1;
}

/* Stat Cards */
.stat-card {
  border-radius: 32px;
  padding: clamp(24px, 3vw, 36px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15), 0 6px 16px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.stat-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.2), 0 12px 28px rgba(0, 0, 0, 0.15);
}

.card-blue {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--themeColorDark) 100%);
}

.card-green {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.card-orange {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--themeColorDark) 100%);
}

.card-purple {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-icon-new {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.3);
  color: white;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 1;
}

.stat-card:hover .stat-icon-new {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.35);
}

/* Responsive */
@media (max-width: 992px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.active {
    transform: translateX(0);
  }

  .main-content {
    margin-left: 0;
    width: 100%;
  }

  .main-content.expanded {
    margin-left: 0;
    width: 100%;
  }
}

/* New Dashboard Styles */
.navbar {
  border-radius: 16px;
  padding: 1rem 1.5rem;
}

/* Modern Navbar */
.navbar-modern {
  background: white;
  padding: 1rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 999;
  margin-bottom: 0;
}

/* Dashboard Content Wrapper */
.dashboard-content-wrapper {
  padding: clamp(16px, 2vw, 24px);
}

.navbar-modern-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.sidebar-toggle-btn {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.1) 0%, rgba(80, 140, 1, 0.1) 100%);
  color: var(--themeColor);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar-toggle-btn:hover {
  background: var(--gradientPrimary);
  color: white;
  transform: scale(1.05);
}

.navbar-search {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.95, 0.8);
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(80, 140, 1, 0.4);
  transition: all 0.3s ease;
  flex: 1;
  max-width: 500px;
  background-color: rgba(80, 140, 1, 0.08);
}

.navbar-search:focus-within {
  background: white;
  border-color: var(--themeColor);
  box-shadow: 0 4px 16px rgba(80, 140, 1, 0.15);
}

.navbar-search i {
  color: var(--textLightColor);
  font-size: 16px;
}

.navbar-search-input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 15px;
  color: var(--textcolor);
  font-weight: 500;
}

.navbar-search-input::placeholder {
  color: var(--textLightColor);
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-icon-wrapper {
  position: relative;
}

.navbar-icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: none;
  background: rgba(255, 255, 255, 0.95, 0.8);
  color: var(--textcolor);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-icon-btn:hover {
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.1) 0%, rgba(80, 140, 1, 0.1) 100%);
  color: var(--themeColor);
  transform: translateY(-2px);
}

.navbar-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 10px;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

.navbar-user-wrapper {
  position: relative;
}

.navbar-user-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 16px;
  border: none;
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.08) 0%, rgba(80, 140, 1, 0.08) 100%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.navbar-user-btn:hover {
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.15) 0%, rgba(80, 140, 1, 0.15) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(80, 140, 1, 0.2);
}

.navbar-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gradientPrimary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(80, 140, 1, 0.3);
}

.navbar-user-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.navbar-user-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--primaryColor);
  line-height: 1.2;
}

.navbar-user-role {
  font-size: 12px;
  color: var(--textLightColor);
  font-weight: 500;
}

.navbar-user-arrow {
  font-size: 12px;
  color: var(--textLightColor);
  transition: transform 0.3s ease;
}

.navbar-user-btn:hover .navbar-user-arrow {
  transform: rotate(180deg);
}

/* Navbar Dropdown */
.navbar-dropdown {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 40px var(--shadowHover);
  padding: 0.5rem;
  margin-top: 0.75rem;
  min-width: 320px;
}

.navbar-dropdown .dropdown-header {
  padding: 1rem 1rem 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.navbar-dropdown .dropdown-item {
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin: 0.25rem 0;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

.navbar-dropdown .dropdown-item:hover {
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.08) 0%, rgba(80, 140, 1, 0.08) 100%);
  transform: translateX(4px);
}

.notification-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.notification-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}

.notification-content {
  flex: 1;
}

.notification-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--primaryColor);
  margin-bottom: 0.25rem;
}

.notification-time {
  font-size: 12px;
  color: var(--textLightColor);
}

.user-dropdown-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-dropdown-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradientPrimary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.navbar-user-dropdown {
  min-width: 280px;
}

/* Responsive Navbar */
@media (max-width: 992px) {
  .navbar-search {
    display: none;
  }

  .navbar-user-info {
    display: none;
  }

  .navbar-user-arrow {
    display: none;
  }
}

@media (max-width: 576px) {
  .navbar-modern {
    padding: 0.75rem 1rem;
  }

  .navbar-icon-btn {
    width: 42px;
    height: 42px;
  }

  .navbar-dropdown {
    min-width: 280px;
  }
}

.user-avatar-sm {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradientPrimary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

.page-header {
  padding: 0 0.5rem;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumb-item a {
  color: var(--themeColor);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--textLightColor);
}

/* Modern Page Header */
.page-header-modern {
  background: transparent;
  padding: 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05, 0.6);
  margin-bottom: 2rem;
}

.page-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.page-title-wrapper {
  flex: 1;
}

.page-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  background: var(--gradientPrimary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Modern Breadcrumb */
.breadcrumb-modern {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumb-modern-item {
  font-size: 14px;
  font-weight: 500;
}

.breadcrumb-modern-item a {
  color: var(--textLightColor);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.breadcrumb-modern-item a:hover {
  color: var(--themeColor);
}

.breadcrumb-modern-item.active {
  color: var(--primaryColor);
  font-weight: 600;
}

.breadcrumb-modern-separator {
  color: var(--textLightColor);
  font-size: 10px;
}

/* Header Date Time */
.header-date-time {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}

.header-date,
.header-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.08) 0%, rgba(80, 140, 1, 0.08) 100%);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--textcolor);
  min-width: 200px;
}

.header-date i,
.header-time i {
  color: var(--themeColor);
  font-size: 16px;
}

@media (max-width: 768px) {
  .page-header-modern {
    padding: 1.5rem 0 1rem 0;
  }

  .page-title {
    font-size: 22px;
  }

  .page-header-content {
    align-items: flex-start;
    gap: 1rem;
  }
}

/* Referral Simple Section */
.referral-simple-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.08) 0%, rgba(80, 140, 1, 0.08) 100%);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(80, 140, 1, 0.1);
}

.referral-buttons-simple {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.referral-btn-simple {
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.referral-btn-simple:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.referral-btn-simple-odd {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
  color: white;
}

.referral-btn-simple-odd:hover {
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.3);
}

.referral-btn-simple-even {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--themeColorDark) 100%);
  color: white;
}

.referral-btn-simple-even:hover {
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.referral-btn-simple-whatsapp {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
  color: white;
}

.referral-btn-simple-whatsapp:hover {
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

/* Simple Stat Cards */
.stat-card-simple {
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
}

.stat-card-simple:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: var(--themeColor);
}

.stat-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--accentColor) 100%);
  flex-shrink: 0;
}

.stat-card-simple.stat-card-danger .stat-card-icon {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-card-content {
  flex: 1;
}

.stat-card-label {
  margin: 0;
  font-size: 0.85rem;
  color: var(--textLightColor);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.stat-card-value {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primaryColor);
}

.stat-modern-card {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.stat-modern-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.08;
  transition: all 0.4s ease;
}

.stat-modern-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-modern-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 48px var(--shadowHover);
  border-color: transparent;
}

.stat-modern-card:hover::before {
  transform: scale(1.2);
  opacity: 0.15;
}

.stat-modern-card:hover::after {
  opacity: 1;
}

.stat-modern-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.stat-modern-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.stat-modern-card:hover .stat-modern-icon {
  transform: scale(1.1) rotate(5deg);
}

.stat-modern-badge {
  padding: 0.4rem 1rem;
  border-radius: 24px;
  font-size: 11px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.stat-modern-body {
  position: relative;
  z-index: 1;
}

.stat-modern-value {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  line-height: 1;
  background: linear-gradient(135deg, var(--primaryColor) 0%, var(--textcolor) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-modern-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--textcolor);
  margin: 0;
  line-height: 1.4;
}

/* Gradient Backgrounds */
.stat-gradient-red::after {
  background: linear-gradient(90deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-red .stat-modern-icon,
.stat-gradient-red .stat-modern-badge {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-red::before {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-blue::after {
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--themeColorDark) 100%);
}

.stat-gradient-blue .stat-modern-icon,
.stat-gradient-blue .stat-modern-badge {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--themeColorDark) 100%);
}

.stat-gradient-blue::before {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--themeColorDark) 100%);
}

.stat-gradient-orange::after {
  background: linear-gradient(90deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-orange .stat-modern-icon,
.stat-gradient-orange .stat-modern-badge {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-orange::before {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-green::after {
  background: linear-gradient(90deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-green .stat-modern-icon,
.stat-gradient-green .stat-modern-badge {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-green::before {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-teal::after {
  background: linear-gradient(90deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-teal .stat-modern-icon,
.stat-gradient-teal .stat-modern-badge {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-teal::before {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-pink::after {
  background: linear-gradient(90deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-pink .stat-modern-icon,
.stat-gradient-pink .stat-modern-badge {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-pink::before {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-purple::after {
  background: linear-gradient(90deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-purple .stat-modern-icon,
.stat-gradient-purple .stat-modern-badge {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-purple::before {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-cyan::after {
  background: linear-gradient(90deg, var(--accentColor) 0%, var(--themeColor) 100%);
}

.stat-gradient-cyan .stat-modern-icon,
.stat-gradient-cyan .stat-modern-badge {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--themeColor) 100%);
}

.stat-gradient-cyan::before {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--themeColor) 100%);
}

.stat-gradient-amber::after {
  background: linear-gradient(90deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-amber .stat-modern-icon,
.stat-gradient-amber .stat-modern-badge {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-amber::before {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-emerald::after {
  background: linear-gradient(90deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-emerald .stat-modern-icon,
.stat-gradient-emerald .stat-modern-badge {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-emerald::before {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-yellow::after {
  background: linear-gradient(90deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-yellow .stat-modern-icon,
.stat-gradient-yellow .stat-modern-badge {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-yellow::before {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-lime::after {
  background: linear-gradient(90deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-lime .stat-modern-icon,
.stat-gradient-lime .stat-modern-badge {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-lime::before {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-indigo::after {
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--themeColorDark) 100%);
}

.stat-gradient-indigo .stat-modern-icon,
.stat-gradient-indigo .stat-modern-badge {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--themeColorDark) 100%);
}

.stat-gradient-indigo::before {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--themeColorDark) 100%);
}

.stat-gradient-rose::after {
  background: linear-gradient(90deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-rose .stat-modern-icon,
.stat-gradient-rose .stat-modern-badge {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-rose::before {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-violet::after {
  background: linear-gradient(90deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-violet .stat-modern-icon,
.stat-gradient-violet .stat-modern-badge {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

.stat-gradient-violet::before {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
}

/* Bottom Section Grid */
.bottom-section-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.5rem;
}

/* Profile Modern Card */
.profile-modern-card {
  background: linear-gradient(135deg, var(--secondaryColor) 0%, var(--secondaryColor) 100%);
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.profile-modern-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px var(--shadowHover);
}

.profile-modern-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--gradientPrimary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  margin: 0 auto 2rem;
  box-shadow: 0 12px 32px rgba(80, 140, 1, 0.35);
  border: 6px solid white;
  transition: all 0.3s ease;
}

.profile-modern-card:hover .profile-modern-avatar {
  transform: scale(1.05);
  box-shadow: 0 16px 40px rgba(80, 140, 1, 0.45);
}

.profile-modern-id {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 0.75rem;
  background: var(--gradientPrimary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.profile-modern-company {
  font-size: 17px;
  color: var(--textcolor);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.profile-modern-package {
  font-size: 15px;
  color: var(--textLightColor);
  margin-bottom: 2rem;
  font-weight: 500;
}

.profile-modern-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(0, 0, 0, 0.06);
}

.profile-meta-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 14px;
  color: var(--textcolor);
  font-weight: 500;
  padding: 0.75rem;
  background: rgba(80, 140, 1, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.profile-meta-item:hover {
  background: rgba(80, 140, 1, 0.1);
  transform: translateX(4px);
}

.profile-meta-item i {
  color: var(--themeColor);
  font-size: 18px;
}

/* News Modern Card */
.news-modern-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.news-modern-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px var(--shadowHover);
}

.news-modern-header {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
  padding: 2rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.news-modern-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.news-modern-header h5 {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  position: relative;
  z-index: 1;
}

.news-modern-body {
  padding: 3rem 2rem;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-empty-state {
  text-align: center;
  color: var(--textLightColor);
}

.news-empty-state i {
  font-size: 64px;
  margin-bottom: 1.5rem;
  opacity: 0.3;
  color: var(--accentColor);
}

.news-empty-state p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .stats-modern-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

@media (max-width: 992px) {
  .bottom-section-grid {
    grid-template-columns: 1fr;
  }

  .stats-modern-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .referral-buttons-grid {
    grid-template-columns: 1fr;
  }

  .stats-modern-grid {
    grid-template-columns: 1fr;
  }

  .stat-modern-card {
    padding: 1.25rem;
  }

  .stat-modern-value {
    font-size: 28px;
  }
}


/* Profile Page Styles */
.profile-container {
  max-width: 1200px;
  margin: 0 auto;
}

.profile-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.98, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 2px solid rgba(0, 0, 0, 0.05, 0.6);
  box-shadow: 0 12px 40px rgba(80, 140, 1, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.profile-card-header {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--themeColorDark) 100%);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.profile-card-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.profile-card-header::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.profile-card-title-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.profile-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.profile-card-title {
  color: white;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.5px;
}

.profile-card-body {
  padding: 2.5rem;
}

.profile-fields-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.profile-field {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.profile-field.full-width {
  grid-column: 1 / -1;
}

.profile-field-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--textLightColor);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.profile-field-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--primaryColor);
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.08) 0%, rgba(80, 140, 1, 0.08) 100%);
  border-radius: 12px;
  border: 1px solid rgba(80, 140, 1, 0.15);
  word-break: break-word;
}

/* Page Header Modern */
.page-header-modern {
  margin-bottom: 2rem;
}

.page-header-content {
  display: flex;
  gap: 1rem;
}

.page-title-wrapper {
  flex: 1;
}

.page-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primaryColor);
  margin: 0;
}

.breadcrumb-modern {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0;
}

.breadcrumb-modern-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
}

.breadcrumb-modern-item a {
  color: var(--themeColor);
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.breadcrumb-modern-item a:hover {
  color: var(--themeColorDark);
}

.breadcrumb-modern-item.active {
  color: var(--textLightColor);
  font-weight: 500;
}

.breadcrumb-modern-separator {
  color: var(--borderColor);
  font-size: 12px;
}

/* Responsive Profile Styles */
@media (max-width: 768px) {
  .profile-card-header {
    padding: 1.5rem;
  }

  .profile-card-body {
    padding: 1.5rem;
  }

  .profile-fields-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }


  .page-header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .page-title {
    font-size: 24px;
  }

  .profile-card-title {
    font-size: 18px;
  }

  .profile-card-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .profile-card {
    border-radius: 16px;
  }

  .profile-card-header {
    padding: 1rem;
  }

  .profile-card-body {
    padding: 1rem;
  }

  .profile-fields-grid {
    gap: 1rem;
  }

  .profile-field-label {
    font-size: 12px;
  }

  .profile-field-value {
    font-size: 14px;
    padding: 10px 12px;
  }

  .page-title {
    font-size: 20px;
  }

  .breadcrumb-modern-item a,
  .breadcrumb-modern-item.active {
    font-size: 12px;
  }
}

/* I Card Styles */
.icard-container {
  max-width: 600px;
  margin: 0 auto;
}

.icard-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.icard {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--themeColorDark) 100%);
  border-radius: clamp(12px, 2vw, 20px);
  padding: clamp(1.5rem, 3vw, 2rem);
  color: white;
  box-shadow: 0 12px 40px rgba(80, 140, 1, 0.3);
  aspect-ratio: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.icard::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.icard::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.icard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.icard-logo {
  width: clamp(40px, 6vw, 50px);
  height: clamp(40px, 6vw, 50px);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(20px, 3vw, 24px);
}

.icard-company {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 700;
  letter-spacing: 1px;
}

.icard-content {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.icard-photo {
  width: clamp(60px, 10vw, 80px);
  height: clamp(60px, 10vw, 80px);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(28px, 5vw, 36px);
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.icard-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.icard-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(11px, 1.2vw, 13px);
}

.icard-label {
  opacity: 0.8;
  font-weight: 500;
}

.icard-value {
  font-weight: 700;
  text-align: right;
}

.icard-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: clamp(0.75rem, 1.5vw, 1rem);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.icard-qr {
  width: clamp(40px, 6vw, 50px);
  height: clamp(40px, 6vw, 50px);
  border-radius: 8px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--themeColor);
  font-size: clamp(18px, 3vw, 24px);
}

.icard-validity {
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 600;
  opacity: 0.9;
}

.icard-actions {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  justify-content: center;
}

.icard-btn-download {
  padding: clamp(10px, 1.5vw, 14px) clamp(20px, 4vw, 32px);
  border-radius: 10px;
  border: none;
  background: var(--gradientPrimary);
  color: white;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(80, 140, 1, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.icard-btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(80, 140, 1, 0.4);
}


/* Register Form Styles */
.register-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.register-form-card {
  background: white;
  border-radius: clamp(12px, 2vw, 16px);
  border: 1px solid rgba(0, 0, 0, 0.05, 0.8);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.register-form-header {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--themeColorDark) 100%);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  color: white;
}

.register-form-title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  margin: 0;
}

.register-form {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(10px, 2vw, 12px);
}


.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: clamp(13px, 1.2vw, 14px);
  font-weight: 600;
  color: var(--primaryColor);
  margin: 0;
}

.required {
  color: var(--accentColor);
  font-weight: 700;
}

.form-control {
  padding: clamp(10px, 1.5vw, 12px) clamp(12px, 2vw, 16px);
  border: 1px solid rgba(0, 0, 0, 0.05, 0.8);
  border-radius: 8px;
  font-size: clamp(13px, 1.2vw, 14px);
  color: var(--textcolor);
  background: rgba(255, 255, 255, 0.95, 0.5);
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--themeColor);
  background: white;
  box-shadow: 0 0 0 3px rgba(80, 140, 1, 0.1);
}

.form-control::placeholder {
  color: var(--textcolor);
}

.form-control option {
  color: var(--textcolor);
  background: white;
}

.form-actions {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
  padding-top: clamp(1.5rem, 2vw, 2rem);
  border-top: 1px solid rgba(0, 0, 0, 0.05, 0.6);
  justify-content: center;
  flex-wrap: wrap;
}

.btn-submit,
.btn-reset {
  padding: clamp(8px, 1.2vw, 10px) clamp(14px, 3vw, 28px);
  border-radius: 8px;
  border: none;
  font-size: clamp(10px, 1.2vw, 14px);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: auto;
  min-width: clamp(100px, 20vw, 150px);
}

.btn-submit {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--themeColorDark) 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(80, 140, 1, 0.3);
  border: 1px solid rgba(80, 140, 1, 0.2);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(80, 140, 1, 0.4);
  background: linear-gradient(135deg, var(--themeColorDark) 0%, var(--accentColor) 100%);
}

.btn-reset {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.btn-reset:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
}


/* Activate Form Styles */
.activate-form-container {
  max-width: 700px;
  margin: 0 auto;
}

.activate-form-card {
  background: white;
  border-radius: clamp(12px, 2vw, 16px);
  border: 1px solid rgba(0, 0, 0, 0.05, 0.8);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.activate-form-header {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--themeColorDark) 100%);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  color: white;
}

.activate-form-title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  margin: 0;
}

.activate-form {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.activate-form .form-group {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  margin-bottom: clamp(1.25rem, 2vw, 1.5rem);
}

.activate-form .form-label {
  font-size: clamp(13px, 1.2vw, 14px);
  font-weight: 600;
  color: var(--primaryColor);
  margin: 0;
}

.activate-form .form-control {
  padding: clamp(10px, 1.5vw, 12px) clamp(12px, 2vw, 16px);
  border: 1px solid rgba(0, 0, 0, 0.05, 0.8);
  border-radius: 8px;
  font-size: clamp(13px, 1.2vw, 14px);
  color: var(--textcolor);
  background: rgba(255, 255, 255, 0.95, 0.5);
  transition: all 0.3s ease;
  font-family: inherit;
}

.select-wrapper {
  position: relative;
  display: block;
}

.select-wrapper select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: clamp(36px, 6vw, 44px);
  width: 100%;
  background-image: none;
}

.select-arrow {
  position: absolute;
  right: clamp(10px, 1.5vw, 14px);
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--textLightColor);
  font-size: clamp(12px, 1.5vw, 14px);
  transition: color 0.3s ease;
  z-index: 1;
}


.select-wrapper select.form-control:focus {
  outline: none;
  border-color: var(--themeColor);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(80, 140, 1, 0.1);
}

.select-wrapper select.form-control:focus~.select-arrow {
  color: var(--themeColor);
}

.activate-form .form-control:focus {
  outline: none;
  border-color: var(--themeColor);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(80, 140, 1, 0.1);
}

.activate-form .form-control:disabled {
  background: rgba(0, 0, 0, 0.05, 0.3);
  cursor: not-allowed;
}

.activate-form .form-control::placeholder {
  color: var(--textLightColor);
}

.activate-form .form-control option {
  color: var(--textcolor);
  background: white;
}

.activate-form .form-actions {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
  padding-top: clamp(1.5rem, 2vw, 2rem);
  border-top: 1px solid rgba(0, 0, 0, 0.05, 0.6);
  justify-content: center;
}

.btn-activate,
.btn-reset {
  padding: clamp(8px, 1.2vw, 10px) clamp(20px, 3vw, 28px);
  border-radius: 8px;
  border: none;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: auto;
}

.btn-activate {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--accentColor) 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(80, 140, 1, 0.3);
}

.btn-activate:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(80, 140, 1, 0.4);
}

.btn-reset {
  background: var(--accentColor);
  color: white;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}


/* Select Arrow Fix */
.select-arrow {
  position: absolute;
  right: clamp(10px, 1.5vw, 14px);
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--textLightColor);
  font-size: clamp(12px, 1.5vw, 14px);
  transition: color 0.3s ease;
  z-index: 1;
}

.select-wrapper select:focus~.select-arrow {
  color: var(--themeColor);
}


/* Data Table Styles */
.table-container {
  background: white;
  border-radius: clamp(12px, 2vw, 16px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05, 0.6);
  overflow: hidden;
}

.table-header {
  padding: clamp(16px, 2vw, 20px) clamp(16px, 2vw, 24px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05, 0.6);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95, 0.5) 0%, rgba(255, 255, 255, 0.9, 0.5) 100%);
}

.table-controls {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  flex-wrap: wrap;
}

.show-entries {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(12px, 1.2vw, 14px);
  color: var(--textcolor);
  font-weight: 500;
}

.show-entries select {
  padding: clamp(6px, 1vw, 8px) clamp(8px, 1.5vw, 12px);
  border: 1px solid rgba(0, 0, 0, 0.05, 0.8);
  border-radius: 6px;
  background: white;
  color: var(--textcolor);
  font-size: clamp(12px, 1.2vw, 14px);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.show-entries select:hover {
  border-color: var(--themeColor);
  box-shadow: 0 2px 8px rgba(80, 140, 1, 0.1);
}

.show-entries select:focus {
  outline: none;
  border-color: var(--themeColor);
  box-shadow: 0 0 0 3px rgba(80, 140, 1, 0.1);
}

.table-search {
  flex: 1;
  min-width: clamp(150px, 20vw, 300px);
  display: flex;
  justify-content: end;
}

.table-search .search-input {
  width: 50%;
  padding: clamp(8px, 1.2vw, 10px) clamp(12px, 1.5vw, 16px);
  border: 1px solid rgba(0, 0, 0, 0.05, 0.8);
  border-radius: 8px;
  font-size: clamp(12px, 1.2vw, 14px);
  color: var(--textcolor);
  background: rgba(80, 140, 1, 0.08);
  transition: all 0.3s ease;
}

.table-search .search-input::placeholder {
  color: var(--textLightColor);
}

.table-search .search-input:focus {
  outline: 0 !important;
  border: 1px solid var(--themeColor);
  box-shadow: 0 0 0 3px rgba(80, 140, 1, 0.1);
}

.table-wrapper {
  overflow-x: auto;
  max-height: clamp(400px, 60vh, 600px);
}

.table-wrapper::-webkit-scrollbar {
  height: 6px;
}

.table-wrapper::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05, 0.3);
}

.table-wrapper::-webkit-scrollbar-thumb {
  background: var(--themeColor);
  border-radius: 3px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--themeColorDark);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(12px, 1.2vw, 14px);
}

.data-table thead {
  background: #93ab14;
  position: sticky;
  top: 0;
  z-index: 10;
}

.data-table thead th {
  padding: clamp(12px, 1.5vw, 16px) clamp(12px, 1.5vw, 16px) !important;
  text-align: left;
  font-weight: 700;
  color: var(--whiteColor);
  border-bottom: 2px solid var(--themeColor);
  white-space: nowrap;
  background: linear-gradient(135deg, var(--themeColor) 0.08, var(--accentColor) 0.08);
}

.data-table tbody tr {
  border-bottom: 1px solid rgba(224, 231, 255, 0.6);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.data-table tbody tr:hover {
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.04) 0%, rgba(246, 173, 1, 0.04) 100%);
  box-shadow: inset 0 0 0 1px rgba(80, 140, 1, 0.1);
}

.data-table tbody tr:nth-child(even) {
  background: rgba(240, 249, 255, 0.5);
}

.data-table tbody tr:nth-child(even):hover {
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.04) 0%, rgba(246, 173, 1, 0.04) 100%);
}

.data-table tbody td {
  padding: clamp(12px, 1.5vw, 16px) clamp(12px, 1.5vw, 16px) !important;
  color: var(--textcolor);
  font-weight: 500;
  white-space: nowrap;
}

.data-table tbody td i {
  color: var(--secondaryColor);
  margin-right: 0.25rem;
}

.table-footer {
  padding: clamp(12px, 1.5vw, 16px) clamp(16px, 2vw, 24px);
  border-top: 1px solid rgba(0, 0, 0, 0.05, 0.6);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95, 0.5) 0%, rgba(255, 255, 255, 0.9, 0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.table-info {
  font-size: clamp(12px, 1.2vw, 14px);
  color: var(--textcolor);
  font-weight: 500;
}

.table-pagination {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.pagination-btn {
  padding: clamp(6px, 1vw, 8px) clamp(10px, 1.5vw, 14px);
  border: 1px solid rgba(0, 0, 0, 0.05, 0.8);
  border-radius: 6px;
  background: white;
  color: var(--textcolor);
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: clamp(32px, 4vw, 40px);
}

.pagination-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.1) 0%, rgba(80, 140, 1, 0.1) 100%);
  border-color: var(--themeColor);
  color: var(--themeColor);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(80, 140, 1, 0.15);
}

.pagination-btn.active {
  background: var(--gradientPrimary);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(80, 140, 1, 0.3);
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.entries-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: clamp(6px, 1vw, 8px) clamp(8px, 1.5vw, 12px);
  padding-right: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(0, 0, 0, 0.05, 0.8);
  border-radius: 6px;
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23475569' d='M6 9L1 4h10z'/%3E%3C/svg%3E") no-repeat;
  background-position: right clamp(6px, 1vw, 8px) center;
  background-size: 12px;
  color: var(--textcolor);
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.entries-select:hover {
  border-color: var(--themeColor);
  box-shadow: 0 2px 8px rgba(80, 140, 1, 0.1);
}

.entries-select:focus {
  outline: none;
  border-color: var(--themeColor);
  box-shadow: 0 0 0 3px rgba(80, 140, 1, 0.1);
}


/* DataTables Custom Styling */
.dataTables_wrapper {
  width: 100%;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
  margin-bottom: 0;
}

.dataTables_wrapper .dataTables_length label,
.dataTables_wrapper .dataTables_filter label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(12px, 1.2vw, 14px);
  color: var(--textcolor);
  font-weight: 500;
  margin: 0;
}

.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_filter input {
  padding: clamp(6px, 1vw, 8px) clamp(8px, 1.5vw, 12px);
  border: 1px solid rgba(0, 0, 0, 0.05, 0.8);
  border-radius: 6px;
  background: white;
  color: var(--textcolor);
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 500;
  transition: all 0.3s ease;
}

.dataTables_wrapper .dataTables_length select:hover,
.dataTables_wrapper .dataTables_filter input:hover {
  border-color: var(--themeColor);
  box-shadow: 0 2px 8px rgba(80, 140, 1, 0.1);
}

.dataTables_wrapper .dataTables_length select:focus,
.dataTables_wrapper .dataTables_filter input:focus {
  outline: none;
  border-color: var(--themeColor);
  box-shadow: 0 0 0 3px rgba(80, 140, 1, 0.1);
}

.dataTables_wrapper .dataTables_filter input {
  width: 100%;
  max-width: clamp(120px, 15vw, 200px);
}

.dataTables_wrapper .dataTables_info {
  font-size: clamp(12px, 1.2vw, 14px);
  color: var(--textcolor);
  font-weight: 500;
  padding: 0;
  margin: 0;
}

.dataTables_wrapper .dataTables_paginate {
  margin: 0;
  padding: 0;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  padding: clamp(6px, 1vw, 8px) clamp(10px, 1.5vw, 14px);
  border: 1px solid rgba(0, 0, 0, 0.05, 0.8);
  border-radius: 6px;
  background: white;
  color: var(--textcolor);
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 clamp(2px, 0.5vw, 4px);
  min-width: clamp(32px, 4vw, 40px);
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover:not(.disabled) {
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.1) 0%, rgba(80, 140, 1, 0.1) 100%);
  border-color: var(--themeColor);
  color: var(--themeColor);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(80, 140, 1, 0.15);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: var(--gradientPrimary);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(80, 140, 1, 0.3);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.dataTables_wrapper .dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  margin-left: -50%;
  margin-top: -26px;
  text-align: center;
  z-index: 999;
  display: none;
}

.dataTables_wrapper .dataTables_processing.show {
  display: block;
}

/* DataTables sorting icons */
.dataTables_wrapper th.dt-orderable-asc::after,
.dataTables_wrapper th.dt-orderable-desc::after {
  content: '';
  margin-left: 0.5rem;
}

.dataTables_wrapper th.sorting::after {
  content: ' ↕';
  opacity: 0.5;
  font-size: 12px;
}

.dataTables_wrapper th.sorting_asc::after {
  content: ' ↑';
  opacity: 1;
  color: var(--themeColor);
  font-size: 12px;
}

.dataTables_wrapper th.sorting_desc::after {
  content: ' ↓';
  opacity: 1;
  color: var(--themeColor);
  font-size: 12px;
}

/* Override table-header styles for DataTables */
.dataTables_wrapper .table-header {
  display: none;
}

.dataTables_wrapper .table-footer {
  display: none;
}

/* Adjust table container for DataTables */
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
  padding: clamp(12px, 1.5vw, 16px) clamp(16px, 2vw, 24px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95, 0.5) 0%, rgba(255, 255, 255, 0.9, 0.5) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05, 0.6);
}

.dataTables_wrapper .dataTables_length {
  float: left;
}

.dataTables_wrapper .dataTables_filter {
  float: right;
  text-align: right;
}

.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
  padding: clamp(12px, 1.5vw, 16px) clamp(16px, 2vw, 24px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95, 0.5) 0%, rgba(255, 255, 255, 0.9, 0.5) 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.05, 0.6);
}

.dataTables_wrapper .dataTables_info {
  float: left;
}

.dataTables_wrapper .dataTables_paginate {
  float: right;
  text-align: right;
}

.dataTables_wrapper::after {
  content: '';
  display: table;
  clear: both;
}


/* Status Badges */
.badge-active {
  display: inline-block;
  padding: clamp(4px, 0.8vw, 6px) clamp(8px, 1.2vw, 12px);
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
  color: white;
  border-radius: 6px;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.badge-inactive {
  display: inline-block;
  padding: clamp(4px, 0.8vw, 6px) clamp(8px, 1.2vw, 12px);
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
  color: white;
  border-radius: 6px;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}


/* Filter Container */
.filter-container {
  background: white;
  border-radius: clamp(12px, 2vw, 16px);
  padding: clamp(16px, 2vw, 24px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05, 0.6);
}

.filter-controls {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  align-items: center;
}

.filter-select,
.filter-date {
  padding: clamp(8px, 1.2vw, 10px) clamp(12px, 1.5vw, 16px);
  border: 1px solid rgba(0, 0, 0, 0.05, 0.8);
  border-radius: 8px;
  background: white;
  color: var(--textcolor);
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: clamp(120px, 15vw, 160px);
}

.filter-select:hover,
.filter-date:hover {
  border-color: var(--themeColor);
  box-shadow: 0 2px 8px rgba(80, 140, 1, 0.1);
}

.filter-select:focus,
.filter-date:focus {
  outline: none;
  border-color: var(--themeColor);
  box-shadow: 0 0 0 3px rgba(80, 140, 1, 0.1);
}

.filter-btn {
  padding: clamp(8px, 1.2vw, 10px) clamp(16px, 2vw, 24px);
  border: none;
  border-radius: 8px;
  background: var(--gradientPrimary);
  color: white;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(80, 140, 1, 0.3);
}

.filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(80, 140, 1, 0.4);
}

.filter-btn:active {
  transform: translateY(0);
}

/* Table Title Section */
.table-title-section {
  padding: clamp(12px, 1.5vw, 16px) clamp(16px, 2vw, 24px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05, 0.6);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95, 0.5) 0%, rgba(255, 255, 255, 0.9, 0.5) 100%);
}

.table-title {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 700;
  color: var(--primaryColor);
  margin: 0;
}


/* Carry Details Styles */
.carry-details-container {
  background: white;
  border-radius: clamp(12px, 2vw, 16px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05, 0.6);
  overflow: hidden;
}

.carry-details-card {
  display: flex;
  flex-direction: column;
}

.carry-details-header {
  padding: clamp(16px, 2vw, 24px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05, 0.6);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95, 0.5) 0%, rgba(255, 255, 255, 0.9, 0.5) 100%);
}

.carry-details-title {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 700;
  color: var(--primaryColor);
  margin: 0;
}

.carry-details-content {
  padding: clamp(16px, 2vw, 24px);
}

.carry-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 32px);
  padding: clamp(12px, 1.5vw, 16px) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05, 0.6);
}

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

.carry-row.data-row {
  padding: clamp(16px, 2vw, 24px) 0;
}

.carry-label {
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 700;
  color: var(--primaryColor);
  text-align: center;
}

.carry-value {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 600;
  color: var(--textcolor);
  text-align: center;
  padding: clamp(8px, 1vw, 12px);
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.05) 0%, rgba(80, 140, 1, 0.05) 100%);
  border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .carry-row {
    grid-template-columns: 1fr;
    gap: clamp(8px, 1.5vw, 12px);
  }

  .carry-label,
  .carry-value {
    text-align: left;
    padding-left: clamp(8px, 1.5vw, 12px);
  }
}


/* Action Button Styles */
.action-btn {
  padding: clamp(6px, 1vw, 8px) clamp(12px, 1.5vw, 16px);
  border: none;
  border-radius: 6px;
  background: var(--gradientPrimary);
  color: white;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 2px 8px rgba(80, 140, 1, 0.2);
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(80, 140, 1, 0.3);
}

.action-btn:active {
  transform: translateY(0);
}

.action-btn i {
  font-size: clamp(10px, 1vw, 12px);
  color: white;
}


/* Status Badge - Accepted */
.badge-accepted {
  display: inline-block;
  padding: clamp(4px, 0.8vw, 6px) clamp(8px, 1.2vw, 12px);
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--accentColor) 100%);
  color: white;
  border-radius: 6px;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Small Action Button */
.action-btn-sm {
  padding: clamp(4px, 0.8vw, 6px) clamp(8px, 1.2vw, 12px);
  border: none;
  border-radius: 6px;
  background: var(--gradientPrimary);
  color: white;
  font-size: clamp(10px, 0.9vw, 12px);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 2px 8px rgba(80, 140, 1, 0.2);
}

.action-btn-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(80, 140, 1, 0.3);
}

.action-btn-sm:active {
  transform: translateY(0);
}

.action-btn-sm i {
  font-size: clamp(9px, 0.8vw, 11px);
  color: white;
}


/* ===== LOGIN PAGE STYLES ===== */

/* Login Page Body */
body.login-page {
  background: linear-gradient(135deg, rgb(26 28 34 / 85%) 0%, rgb(72 61 82 / 85%) 100%), url(https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&h=800&fit=crop) center / cover no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px;
  padding: 0;
}

.login-container {
  width: 100%;
  max-width: 420px;
}

.login-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-header {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--themeColor) 100%);
  padding: 30px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.login-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.login-logo {
  width: 140px;
  margin: 0 auto 12px;
  animation: fadeInScale 0.8s ease-out;
}

.login-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.login-header h1 {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  position: relative;
  z-index: 1;
}

.login-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  margin: 5px 0 0 0;
  position: relative;
  z-index: 1;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.login-body {
  padding: 25px 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  color: var(--primaryColor);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 13px;
  transition: all 0.3s ease;
  font-family: 'Outfit', sans-serif;
  background-color: rgba(80, 140, 1, 0.08);
}

.form-group input:focus {
  outline: none;
  border-color: var(--themeColor);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input::placeholder {
  color: rgb(143, 142, 142);
}

.form-remember {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 12px;
}

.form-remember label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  cursor: pointer;
  color: var(--textcolor);
  font-weight: 500;
}

.form-remember input[type="checkbox"] {
  width: auto;
  margin: 0;
  cursor: pointer;
}

.form-remember a {
  color: var(--themeColor);
  text-decoration: none;
  font-weight: 600;
}

.form-remember a:hover {
  text-decoration: underline;
}

.btn-login {
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--accentColor) 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

.btn-login:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(80, 140, 1, 0.35);
}

.btn-login:active {
  transform: translateY(0);
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(0, 0, 0, 0.1);
  font-size: 12px;
}

.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.btn-social {
  width: 100%;
  padding: 10px;
  background: var(--secondaryColor);
  color: var(--themeColor);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.btn-social:hover {
  background: rgba(0, 0, 0, 0.1);
  color: var(--themeColorDark);
}

.login-footer {
  padding: 15px 20px;
  background: var(--secondaryColor);
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 12px;
  color: var(--textcolor);
}

.login-footer a {
  color: var(--themeColor);
  text-decoration: none;
  font-weight: 600;
}

.login-footer a:hover {
  text-decoration: underline;
}

.error-message {
  background: rgba(255, 0, 0, 0.1);
  border-left: 3px solid var(--accentColor);
  color: var(--accentColor);
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 12px;
  margin-bottom: 15px;
  display: none;
}

.error-message.show {
  display: block;
}

@media (max-width: 480px) {
  .login-body {
    padding: 20px 15px;
  }

  .login-header {
    padding: 25px 15px;
  }

  .login-footer {
    padding: 12px 15px;
  }

  .login-header h1 {
    font-size: 22px;
  }
}


/* Modal Styling */
.modal-content {
  border: none;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
  border-bottom: 2px solid rgba(80, 140, 1, 0.15);
  padding: 24px;
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.08) 0%, rgba(80, 140, 1, 0.08) 100%);
  border-radius: 16px 16px 0 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.modal-title {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--accentColor) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-footer {
  border-top: 2px solid rgba(80, 140, 1, 0.1);
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95, 0.95) 0%, rgba(255, 255, 255, 0.9, 0.95) 100%);
  border-radius: 0 0 16px 16px;
  gap: clamp(0.375rem, 0.2991rem + 0.3797vw, 0.75rem);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.02);
  flex-wrap: nowrap;
}

.has-submenu.open {
  background: rgb(255 255 255 / 17%);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  font-weight: 600;
  position: relative;
  border-left: 4px solid white;
  padding-left: 6px;

}

.btn-close-modal {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.05, 0.8) 0%, rgba(203, 213, 225, 0.8) 100%);
  color: var(--textcolor);
  border: 1px solid rgba(0, 0, 0, 0.05, 0.6);
  padding: 10px clamp(0.875rem, 0.7991rem + 0.3797vw, 1.25rem);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  white-space: nowrap;
  font-size: clamp(10px, 1.2vw, 14px);
}

.btn-close-modal:hover {
  background: linear-gradient(135deg, rgba(203, 213, 225, 0.9) 0%, rgba(148, 163, 184, 0.9) 100%);
  color: var(--primaryColor);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: rgba(203, 213, 225, 0.8);
}

/* Form Row for side-by-side layout */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--primaryColor);
  margin-bottom: 8px;
}

.form-control {
  padding: 10px 14px;
  border: 2px solid rgba(0, 0, 0, 0.05, 0.8);
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95, 0.95) 100%);
}

.form-control:focus {
  outline: none;
  border-color: var(--themeColor);
  box-shadow: 0 0 0 3px rgba(80, 140, 1, 0.12);
  background: white;
}

.form-control::placeholder {
  color: rgba(0, 0, 0, 0.397);
}

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

.select-wrapper {
  position: relative;
}

.select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--themeColor);
  font-size: 12px;
}

.form-control[type="date"] {
  cursor: pointer;
}


/* Editor Toolbar Styles */
.editor-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95, 0.95) 0%, rgba(255, 255, 255, 0.9, 0.95) 100%);
  border: 2px solid rgba(80, 140, 1, 0.1);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  flex-wrap: wrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.editor-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 0, 0, 0.05, 0.8);
  background: white;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--textcolor);
  transition: all 0.3s ease;
  font-size: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.editor-btn:hover {
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.08) 0%, rgba(80, 140, 1, 0.08) 100%);
  color: var(--themeColor);
  border-color: var(--themeColor);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(80, 140, 1, 0.15);
}

.editor-divider {
  width: 1px;
  height: 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05, 0.8) 50%, transparent 100%);
  margin: 0 4px;
}

.editor-select {
  padding: 6px 10px;
  border: 1px solid rgba(0, 0, 0, 0.05, 0.8);
  background: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  color: var(--textcolor);
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.editor-select:hover {
  border-color: var(--themeColor);
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.05) 0%, rgba(80, 140, 1, 0.05) 100%);
  color: var(--themeColor);
}


/* Delete Button Styling */
.btn-danger i {
  color: white;
  font-size: 10px;
}

.btn-danger.btn-sm {
  padding: 0.35rem 0.65rem;
  font-size: 12px;
}

.btn-danger.btn-sm i {
  font-size: 9px;
  margin-right: 0.3rem;
}


/* Search Form Styling */
.search-form-container {
  display: flex;
  justify-content: flex-start;
}

.search-form-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05, 0.6);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  width: 100%;
}

.search-form {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
}

.search-form .row {
  width: 100%;
}

.search-form .btn-primary {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  background: var(--gradientPrimary);
  transition: all 0.3s ease;
  height: 100%;
}

.search-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(80, 140, 1, 0.3);
}

.search-form .btn-primary i {
  font-size: 14px;
}


/* Search Filters Container Styling */
.search-filters-container {
  display: flex;
  justify-content: flex-start;
}

.search-filters-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05, 0.6);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  width: 100%;
}

.search-filters-card .form-control {
  border: 2px solid rgba(0, 0, 0, 0.05, 0.8);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 14px;
  transition: all 0.3s ease;
}

.search-filters-card .form-control:focus {
  border-color: var(--themeColor);
  box-shadow: 0 0 0 3px rgba(80, 140, 1, 0.1);
  outline: none;
}

.search-filters-card .btn-primary {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  background: var(--gradientPrimary);
  transition: all 0.3s ease;
  height: 100%;
}

.search-filters-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(80, 140, 1, 0.3);
}

.search-filters-card .btn-primary i {
  font-size: 14px;
}


/* Add Button Styling */
.btn-success {
  background: linear-gradient(135deg, var(--accentColor) 0%, var(--themeColor) 100%);
  border: none;
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);

  color: white;
}

.btn-success i {
  color: white;
  font-size: 14px;
}

.btn-success.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 13px;
}

.btn-success.btn-sm i {
  font-size: 12px;
}




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

/* Admin Control Section */
.admin-control-section {
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.05) 0%, rgba(246, 173, 1, 0.05) 100%);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(80, 140, 1, 0.1);
  margin-bottom: 20px;
}

.admin-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.admin-action-btn {
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.admin-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.admin-action-btn-primary {
  background-color: #508C01;
  color: white;
}

.admin-action-btn-primary:hover {
  background-color: #3d6900;
}

.admin-action-btn-success {
  background-color: #28a745;
  color: white;
}

.admin-action-btn-success:hover {
  background-color: #218838;
}

.admin-action-btn-info {
  background-color: #17a2b8;
  color: white;
}

.admin-action-btn-info:hover {
  background-color: #138496;
}

.admin-action-btn-warning {
  background-color: #ffc107;
  color: #000;
}

.admin-action-btn-warning:hover {
  background-color: #e0a800;
}

/* Admin Tables - Action Buttons */
.btn {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-sm {
  padding: 4px 8px;
  font-size: 12px;
}

.btn-primary {
  background-color: #508C01;
  color: white;
}

.btn-primary:hover {
  background-color: #3d6900;
  transform: translateY(-1px);
}

.btn-success {
  background-color: #28a745;
  color: white;
}

.btn-success:hover {
  background-color: #218838;
  transform: translateY(-1px);
}

.btn-info {
  background-color: #17a2b8;
  color: white;
}

.btn-info:hover {
  background-color: #138496;
  transform: translateY(-1px);
}

.btn-warning {
  background-color: #ffc107;
  color: #000;
}

.btn-warning:hover {
  background-color: #e0a800;
  transform: translateY(-1px);
}

.btn-danger {
  background-color: #dc3545;
  color: white;
}

.btn-danger:hover {
  background-color: #c82333;
  transform: translateY(-1px);
}

/* Status Badges */
.badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}

.bg-success {
  background-color: #d4edda !important;
  color: #155724 !important;
}

.bg-warning {
  background-color: #fff3cd !important;
  color: #856404 !important;
}

.bg-danger {
  background-color: #f8d7da !important;
  color: #721c24 !important;
}

.bg-info {
  background-color: #d1ecf1 !important;
  color: #0c5460 !important;
}

.bg-primary {
  background-color: #d1ecf1 !important;
  color: #508C01 !important;
}

/* Responsive Design for Admin Controls */
@media (max-width: 768px) {
  .admin-action-buttons {
    flex-direction: column;
  }

  .admin-action-btn {
    width: 100%;
    justify-content: center;
  }
}


/* ==========================================
   ACTION BUTTONS STYLING
   ========================================== */

.data-table td .btn {
  margin: 0 2px;
}

.btn-sm .fa {
  font-size: 12px;
}


/* ========== CUSTOM MODAL STYLES ========== */

/* Modal Custom */
.modal-custom {
  --bs-modal-bg: rgba(255, 255, 255, 0.98);
}

.modal-content-custom {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-content-custom.modal-content-danger {
  border-color: rgba(220, 38, 38, 0.15);
}

/* Modal Header */
.modal-header-custom {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1rem 1rem;
  border-radius: 16px 16px 0 0;
  position: relative;
  overflow: hidden;
}

.modal-header-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradientPrimary);
}

.modal-header-custom.modal-header-danger {
  background: linear-gradient(135deg, rgba(254, 242, 242, 1) 0%, rgba(254, 226, 226, 1) 100%);
}

.modal-header-custom.modal-header-danger::before {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

/* Modal Title */
.modal-title-custom {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primaryColor);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.modal-title-custom i {
  font-size: 1.5rem;
  color: var(--themeColor);
}

.modal-header-custom.modal-header-danger .modal-title-custom i {
  color: #dc2626;
}

/* Modal Body */

.modal-form-group {
  margin-bottom: 1.5rem;
}

.modal-form-group:last-child {
  margin-bottom: 0;
}

.modal-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primaryColor);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-label .required {
  color: #dc2626;
}

.modal-value {
  font-size: 1rem;
  color: var(--textcolor);
  font-weight: 500;
  padding: 0.45rem 10px;
  word-break: break-word;
  background-color: rgba(80, 140, 1, 0.08);
  border-radius: 6px;
}

.modal-value-highlight {
  font-size: 1rem;
  font-weight: 600;
  color: var(--themeColor);
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, rgba(80, 140, 1, 0.08) 0%, rgba(80, 140, 1, 0.08) 100%);
  border-radius: 8px;
  border-left: 3px solid var(--themeColor);
  word-break: break-word;
}

/* Modal Input */
.modal-input {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--textcolor);
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-input:focus {
  border-color: var(--themeColor);
  background: white;
  box-shadow: 0 0 0 3px rgba(80, 140, 1, 0.1);
  outline: none;
}

.modal-input:read-only {
  background: rgba(80, 140, 1, 0.05);
  border-color: rgba(80, 140, 1, 0.15);
  color: var(--textLightColor);
}

/* Modal Footer */
.modal-footer-custom {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.90) 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0 0 16px 16px;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* Modal Buttons */
.btn-modal-primary {
  background: var(--gradientPrimary);
  color: white;
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(80, 140, 1, 0.3);
}

.btn-modal-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(80, 140, 1, 0.4);
  color: white;
}

.btn-modal-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(80, 140, 1, 0.2);
}

.btn-modal-secondary {
  background: rgba(0, 0, 0, 0.06);
  color: var(--textcolor);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-modal-secondary:hover {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  color: #000;
}

.btn-modal-danger {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-modal-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
  color: white;
}

.btn-modal-danger:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

/* Close Button */
.btn-close-custom {
  width: 2rem;
  height: 2rem;
  transition: all 0.3s ease;
}

.btn-close-custom:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* Alert Box */
.alert-box {
  padding: 1rem 1.25rem;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.alert-box-warning {
  background: linear-gradient(135deg, rgba(255, 244, 206, 0.8) 0%, rgba(254, 236, 160, 0.8) 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-left: 3px solid #f59e0b;
  color: #78350f;
}

.alert-box i {
  font-size: 1.25rem;
  color: #f59e0b;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.alert-box strong {
  color: #78350f;
  font-weight: 700;
}

.alert-box p {
  color: #92400e;
  font-size: 0.9rem;
  margin: 0;
}

/* Modal Backdrop */
.modal-backdrop {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal-backdrop.show {
  opacity: 1;
}

/* Responsive Modal */
@media (max-width: 576px) {
  .modal-content-custom {
    border-radius: 12px;
  }

  .modal-header-custom {
    padding: 1.25rem 1.5rem;
    border-radius: 12px 12px 0 0;
  }

  .modal-title-custom {
    font-size: 1.1rem;
  }

  .modal-title-custom i {
    font-size: 1.25rem;
  }

  .modal-body-custom {
    padding: 1.5rem 1.5rem;
  }

  .modal-footer-custom {
    padding: 1.25rem 1.5rem;
    border-radius: 0 0 12px 12px;
    flex-direction: column-reverse;
  }

  .btn-modal-primary,
  .btn-modal-secondary,
  .btn-modal-danger {
    width: 100%;
  }

  .modal-form-group {
    margin-bottom: 1rem;
  }
}

/* ========== END CUSTOM MODAL STYLES ========== */