:root {
  --font-family-base: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.75rem;
  --line-height-tight: 1.2;
  --line-height-normal: 1.45;
  --line-height-relaxed: 1.6;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --app-bg: #eff6ef;
  --app-bg-soft: #f7fbf6;
  --shell-green: #e5f2df;
  --shell-green-strong: #d8ebd0;
  --surface: #ffffff;
  --surface-soft: #f9fcf8;
  --surface-tint: #eef7eb;
  --border: #d7e4d4;
  --border-strong: #c2d7be;
  --text-primary: #111d14;
  --text-secondary: #4d6153;
  --text-muted: #6d806f;
  --brand: #2f8f46;
  --brand-dark: #246f37;
  --brand-soft: #dcefd8;
  --warning-soft: #f8e6b8;
  --danger-soft: #f5d2d2;
  --blue-soft: #dbe9f9;
  --focus-ring: 0 0 0 3px rgba(47, 143, 70, 0.15);
  --shadow-card: 0 8px 24px rgba(36, 84, 40, 0.1);
  --shadow-soft: 0 4px 16px rgba(36, 84, 40, 0.08);
  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 8px;
  --sidebar-width: 182px;
  --sidebar-collapsed-width: 74px;
  --topbar-height: 56px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-normal);
  color: var(--text-primary);
  background:
    radial-gradient(circle at top center, rgba(190, 229, 179, 0.48), transparent 36%),
    linear-gradient(180deg, #e7f3e3 0%, #f1f8ef 140px, #f7fbf5 100%);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.container {
  display: flex;
  min-height: 100vh;
}

#sidebar-placeholder .sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sidebar-width);
  display: flex;
  flex-direction: column;
  padding: 14px 12px;
  background: linear-gradient(180deg, rgba(233, 248, 225, 0.96), rgba(221, 243, 210, 0.92));
  border-right: 1px solid rgba(110, 156, 103, 0.14);
  box-shadow: 6px 0 20px rgba(90, 129, 83, 0.08);
  transition: width 0.18s ease;
}

#sidebar-placeholder.collapsed .sidebar {
  width: var(--sidebar-collapsed-width);
}

#sidebar-placeholder .logo {
  padding: 2px 4px 10px;
}

#sidebar-placeholder .brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
}

#sidebar-placeholder .brand-mark {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark);
}

#sidebar-placeholder .brand-mark svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

#sidebar-placeholder .brand-text {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #244926;
}

#sidebar-placeholder .sidebar-toggle {
  display: none;
}

#sidebar-placeholder .sidebar-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 4px 0;
}

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

#sidebar-placeholder .sidebar-scroll::-webkit-scrollbar-thumb {
  background: rgba(44, 115, 57, 0.18);
  border-radius: 999px;
}

#sidebar-placeholder .sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#sidebar-placeholder .menu-section-label,
#sidebar-placeholder .menu-meta,
#sidebar-placeholder .menu-group-label {
  display: none;
}

#sidebar-placeholder .menu-item,
#sidebar-placeholder .dropdown-toggle,
#sidebar-placeholder .sub-menu-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 10px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #18291a;
  text-align: left;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease;
}

#sidebar-placeholder .menu-item:hover,
#sidebar-placeholder .dropdown-toggle:hover,
#sidebar-placeholder .sub-menu-item:hover {
  background: rgba(255, 255, 255, 0.52);
}

#sidebar-placeholder .menu-item.active,
#sidebar-placeholder .sub-menu-item.active {
  background: linear-gradient(180deg, rgba(147, 214, 141, 0.46), rgba(130, 201, 125, 0.4));
  color: #0f2d15;
  box-shadow: inset 0 0 0 1px rgba(79, 149, 70, 0.1);
}

#sidebar-placeholder .menu-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
  color: #2f7f38;
}

#sidebar-placeholder .menu-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

#sidebar-placeholder .menu-label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

#sidebar-placeholder .menu-text {
  min-width: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

#sidebar-placeholder .dropdown-toggle {
  justify-content: space-between;
}

#sidebar-placeholder .dropdown-arrow {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: transform 0.16s ease;
}

#sidebar-placeholder .dropdown-toggle.open .dropdown-arrow {
  transform: rotate(180deg);
}

#sidebar-placeholder .dropdown-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
  padding-left: 14px;
}

#sidebar-placeholder .dropdown-list.open {
  max-height: 1000px;
}

#sidebar-placeholder .sub-menu-item {
  font-size: 0.88rem;
  color: #385339;
}

#sidebar-placeholder .sidebar-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(110, 156, 103, 0.14);
  display: flex;
  align-items: center;
  gap: 10px;
}

#sidebar-placeholder .user-info {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
}

#sidebar-placeholder .user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ecd8c0, #d5b28d);
  color: #5b3d18;
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}

#sidebar-placeholder .user-details {
  min-width: 0;
  overflow: hidden;
}

#sidebar-placeholder .user-details strong {
  display: block;
  font-size: 0.88rem;
  color: #121a13;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#sidebar-placeholder .user-details span {
  display: block;
  font-size: 0.75rem;
  color: #6d7b6d;
}

#sidebar-placeholder .logout-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #6d7b6d;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.16s ease, color 0.16s ease;
}

#sidebar-placeholder .logout-btn:hover {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

#sidebar-placeholder .logout-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

#sidebar-placeholder.collapsed .user-details {
  display: none;
}

#sidebar-placeholder.collapsed .sidebar-footer {
  justify-content: center;
}

#sidebar-placeholder.collapsed .sidebar {
  padding-inline: 8px;
}

#sidebar-placeholder.collapsed .brand-text,
#sidebar-placeholder.collapsed .dropdown-arrow,
#sidebar-placeholder.collapsed .dropdown-list,
#sidebar-placeholder.collapsed .menu-text {
  display: none;
}

#sidebar-placeholder.collapsed .brand-lockup,
#sidebar-placeholder.collapsed .menu-item,
#sidebar-placeholder.collapsed .dropdown-toggle {
  justify-content: center;
}

.main {
  flex: 1;
  min-width: 0;
  min-height: 100vh;
  margin-left: 220px;
  padding: 10px 14px 14px;
  transition: margin-left 0.18s ease;
  overflow-y: auto;
  height: 100vh;
}

#sidebar-placeholder.collapsed + .main {
  margin-left: 90px;
}

.app-main {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 24px);
}

.app-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  margin-bottom: 14px;
  background: #ffffff;
  border: 1px solid #dce5df;
  border-radius: 12px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}

.topbar-intro {
  display: none;
}

.topbar-actions {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-page-title {
  min-width: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #19231b;
}

.topbar-search {
  position: relative;
  width: 280px;
}

.topbar-search input,
.search,
.filters input,
.filters select,
.filters-grid input,
.filters-grid select {
  width: 100%;
  min-width: 0;
  padding: 9px 12px 9px 38px;
  border: 1px solid #dce5df;
  border-radius: 10px;
  background: #ffffff;
  color: #1f2a24;
  outline: none;
}

.topbar-search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  stroke: #7f8d80;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.icon-button {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid #d6e6d4;
  background: #edf7e9;
  color: #2e7a39;
}

.icon-button svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.icon-badge {
  position: absolute;
  top: -4px;
  right: -3px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #36a34a;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
}

.user-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #162817;
}

.user-chip .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ecd8c0, #d5b28d);
  color: #5b3d18;
  font-size: 0.82rem;
  font-weight: 700;
}

.user-chip-copy {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  font-size: 0.92rem;
}

.user-chip-copy strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #121a13;
}

.user-chip-copy span {
  color: #6d7b6d;
  font-size: 0.82rem;
}

.page-body {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 2px;
}

.page-body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.page-body::-webkit-scrollbar-thumb {
  background: rgba(58, 110, 49, 0.18);
  border-radius: 999px;
}

.page-header,
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 12px;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid #dce5df;
  border-radius: 12px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}

.page-header h1,
.page-header h2,
.page-header h3,
.header h1,
.header h2,
.header h3,
.header .title {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 700;
  color: #1f2a24;
}

.page-header p,
.header p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.84rem;
}

.page-header .actions,
.header .actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filters,
.filters-card,
.card,
.report-card {
  background: #ffffff;
  border: 1px solid #dce5df;
  border-radius: 12px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}

.filters,
.filters-card,
.card,
.report-card {
  padding: 10px;
  margin-bottom: 12px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.filters .search-box,
.filters .search {
  flex: 1;
  min-width: 240px;
  max-width: 340px;
}

.filters-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.cards,
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.metrics-grid {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.metric {
  padding: 12px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(176, 208, 168, 0.5);
  box-shadow: var(--shadow-soft);
}

.metric strong {
  display: block;
  margin-top: 6px;
  font-size: 1.8rem;
}

.metric small {
  color: var(--text-secondary);
}

.metric.green,
.metric.blue,
.metric.amber,
.metric.red {
  background: #ffffff;
}

.btn,
.button,
.btn-view,
.btn-approve,
.btn-reject {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 30px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-green,
.button,
.button.btn-green,
.btn.btn-green,
.btn.btn-primary,
.btn-approve {
  background: #1f7a3f;
  color: #ffffff;
  box-shadow: none;
}

.btn-add {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 0;
  border-radius: 8px;
  background: #1f7a3f;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline,
.button.btn-outline,
.btn.btn-outline,
.btn-view {
  background: #ffffff;
  color: #227539;
  border-color: #86c38c;
}

.btn-reject {
  background: #d84e4e;
  color: #ffffff;
}

.btn:hover,
.button:hover,
.btn-view:hover,
.btn-approve:hover,
.btn-reject:hover {
  transform: translateY(-1px);
}

.report-card h3,
.card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 600;
}

.report-card .report-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.report-card .report-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface-tint);
}

.table-container {
  overflow: auto;
  max-width: 100%;
  max-height: min(60vh, calc(100vh - 250px));
  border: 1px solid #dce5df;
  border-radius: 12px;
  background: #ffffff;
}

.table-container.table-only {
  max-height: min(68vh, calc(100vh - 180px));
}

.table-container table,
.card table,
.report-card table {
  width: 100%;
  min-width: 900px;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
}

.table-container th,
.table-container td,
.card th,
.card td,
.report-card th,
.report-card td {
  padding: 10px 14px;
  border-bottom: 1px solid #ebefec;
  text-align: left;
  white-space: nowrap;
  font-size: 14px;
}

.dashboard-page {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(249, 252, 248, 0.96));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.dashboard-topbar h1 {
  margin: 0;
  font-size: var(--font-size-lg);
  font-weight: 700;
}

.dashboard-content {
  padding: 0 2px 2px;
}

.dashboard-heading {
  margin: 0 0 var(--space-4);
  font-size: var(--font-size-xl);
  line-height: var(--line-height-tight);
  font-weight: 700;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.dashboard-card,
.dashboard-table {
  background: linear-gradient(180deg, #ffffff, #fbfdfa);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.dashboard-card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.dashboard-card {
  overflow: hidden;
  min-height: 140px;
}

.dashboard-card-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-4) 10px;
}

.dashboard-card-number {
  display: block;
  margin-bottom: 6px;
  font-size: var(--font-size-xl);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.dashboard-card-label {
  margin: 0;
  color: #1d2a1e;
  font-size: var(--font-size-sm);
  font-weight: 600;
}

.dashboard-card-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--surface-tint);
}

.dashboard-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: #243127;
}

.dashboard-table {
  overflow: hidden;
}

.dashboard-table-header {
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid #e8f0e5;
}

.dashboard-table-header h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.dashboard-table .table-container {
  border: none;
  border-radius: 0;
  max-height: min(48vh, calc(100vh - 360px));
}

.dashboard-quick-links {
  padding: var(--space-4);
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.dashboard-quick-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 12px 16px;
  background: var(--surface-tint);
  border: 1px solid #deebd9;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: #203123;
  font-weight: 600;
  font-size: var(--font-size-sm);
}

@media (max-width: 1200px) {
  .dashboard-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .dashboard-stats {
    grid-template-columns: 1fr;
  }
}

.table-container th,
.card th,
.report-card th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #f3f5f4;
  color: #1f2a24;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.table-container tbody tr:hover,
.card tbody tr:hover,
.report-card tbody tr:hover {
  background: #fafdf8;
}

.badge,
.status-pill,
.role,
.role-tag,
.status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.badge.approved,
.badge.active-badge,
.status-pill.active,
.green,
.status-chip {
  background: var(--brand-soft);
  color: #1f6d2c;
}

.badge.rejected,
.badge.inactive-badge,
.status-pill.inactive,
.grey {
  background: #ecefed;
  color: #58655a;
}

.pending,
.orange {
  background: var(--warning-soft);
  color: #9b7410;
}

.role,
.role-tag {
  background: var(--blue-soft);
  color: #275d8b;
}

.pagination,
.page-nav,
.table-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
  padding: 8px 2px 0;
  font-size: 0.84rem;
  color: var(--text-secondary);
}

.pages,
.page-nav-pages {
  display: flex;
  align-items: center;
  gap: 8px;
}

.active-page {
  background: #e7f5e3;
  color: #1b6f2c;
  padding: 3px 8px;
  border-radius: 4px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #d6ddd3;
}

.slider::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.14);
  transition: transform 0.16s ease;
}

input:checked + .slider {
  background: #2e9a47;
}

input:checked + .slider::before {
  transform: translateX(18px);
}

@media (max-width: 900px) {
  :root {
    --sidebar-width: 74px;
  }

  #sidebar-placeholder .brand-text,
  #sidebar-placeholder .menu-text,
  #sidebar-placeholder .dropdown-arrow,
  #sidebar-placeholder .dropdown-list {
    display: none;
  }

  #sidebar-placeholder .brand-lockup,
  #sidebar-placeholder .menu-item,
  #sidebar-placeholder .dropdown-toggle {
    justify-content: center;
  }

  .topbar-actions {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .topbar-right {
    width: 100%;
    justify-content: space-between;
  }

  .topbar-search {
    width: 100%;
    order: 1;
  }
}

/* Unified form, button, and table styling for all pages */
.filters,
.filters-card,
.toolbar,
.toolbar-left {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}

.filters {
  justify-content: space-between !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.filters .search-box,
.filters .search {
  flex: 1 !important;
  min-width: 260px !important;
  max-width: 360px !important;
}

.search-box input,
.filters input,
.filters select,
.filters-grid input,
.filters-grid select,
.filter {
  border: 1px solid #dce5df !important;
  background: #fff !important;
  border-radius: 8px !important;
  padding: 9px 10px !important;
  font-size: 14px !important;
  color: #1f2a24 !important;
  min-height: 38px !important;
  box-shadow: none !important;
}

.search-box input {
  padding-left: 36px !important;
}

.search-box input:focus,
.filters input:focus,
.filters select:focus,
.filter:focus {
  outline: none !important;
  border-color: #1f7a3f !important;
  box-shadow: 0 0 0 3px rgba(31, 122, 63, 0.12) !important;
}

.btn,
.button,
.btn-add,
.btn-green,
.btn.btn-primary,
.btn-approve,
.btn-view,
.btn-outline,
.btn-reject {
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  min-height: 38px !important;
  padding: 9px 14px !important;
}

.btn-green,
.button,
.btn.btn-green,
.btn.btn-primary,
.btn-approve,
.btn-add {
  background: #1f7a3f !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: none !important;
}

.table-container,
.card,
.report-card,
.table-panel {
  border: 1px solid #dce5df !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04) !important;
}

.table-container th,
.table-container td,
.card th,
.card td,
.report-card th,
.report-card td,
.data-table th,
.data-table td,
table th,
table td {
  text-align: left !important;
  border-bottom: 1px solid #ebefec !important;
  white-space: nowrap !important;
}

.table-container th,
.card th,
.report-card th,
.data-table th,
table th {
  background: #f3f5f4 !important;
  color: #1f2a24 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  padding: 10px 14px !important;
}

.table-container td,
.card td,
.report-card td,
.data-table td,
table td {
  font-size: 14px !important;
  color: #2c3e2c !important;
  padding: 10px 14px !important;
}

.table-container tbody tr:hover,
.card tbody tr:hover,
.report-card tbody tr:hover,
.data-table tbody tr:hover,
table tbody tr:hover {
  background: #fafcf8 !important;
}
