/* ============================= */
/* 1. CAMPAIGN CARD STYLES */
/* ============================= */

.campaign-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.campaign-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.campaign-img {
  position: relative;
  width: 100%;
  padding-top: 60%;
  overflow: hidden;
  background: #f3f4f6;
}

.campaign-img a,
.campaign-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.campaign-img img {
  object-fit: cover;
}

.campaign-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.campaign-date {
  font-size: 13px;
  color: #777;
  margin-bottom: 8px;
}

.campaign-title {
  margin-bottom: 12px;
  color: #222;
  height: 54px;
  line-height: 1.5;
}

.campaign-title a {
  color: inherit;
  text-decoration: none;
}

.campaign-title a:hover {
  color: #106a31 !important;
}

.progress {
  height: 0.5em;
  background: #e5e7eb;
  border-radius: 4px;
  margin: 0.5em 0;
}

.progress-bar {
  height: 100%;
  border-radius: 4px;
}

.campaign-footer {
  padding: 0 18px 18px;
}

.donate-btn {
  display: block;
  background: #16a34a;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 200ms ease-in;
  text-align: center;
  color: #fff !important;
}

.donate-btn:hover {
  background: #106a31;
  transform: translateY(-1px);
}

.ellipsis-multi-baris {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* ============================= */
/* 2. FILTER BAR STYLES */
/* ============================= */

.filter-bar {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.filter-bar .form-control,
.filter-bar .form-select {
  height: 45px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 14px;
}

.filter-bar .input-group-text {
  background: #fff;
  border: 1px solid #d1d5db;
  border-left: 0;
  border-radius: 0 8px 8px 0;
  height: 45px;
  cursor: pointer;
}

.filter-bar .input-group .form-control {
  border-right: 0;
  border-radius: 8px 0 0 8px;
}

/* Mobile Filter */
.mobile-filter-btn {
  width: 100%;
  padding: 12px;
  background: #16a34a;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 20px;
}

.filter-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s;
}

.filter-overlay.active {
  display: block;
  opacity: 1;
}

.filter-sheet {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 20px 20px 0 0;
  padding: 25px;
  z-index: 1001;
  max-height: 80vh;
  overflow-y: auto;
  transition: bottom 0.3s ease;
}

.filter-sheet.active {
  bottom: 0;
}

.filter-sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e7eb;
}

.filter-sheet-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.filter-sheet-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filter-sheet-footer {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #e5e7eb;
}

.filter-sheet-footer button {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-reset {
  background: #f3f4f6;
  color: #333;
}

.btn-apply {
  background: #16a34a;
  color: white;
}

/* ============================= */
/* 3. CAMPAIGN DETAIL PAGE */
/* ============================= */

/* Detail Heading */
.campaign-detail-title {
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  word-break: break-word;
}

.campaign-detail-price {
  font-weight: 700;
  color: #16a34a;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  line-height: 1.2;
}

/* Image Gallery */
.campaign-images-gallery .image-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: #f3f4f6;
  aspect-ratio: 4/3;
}

.campaign-images-gallery .image-container .lightbox-image {
  display: block;
  width: 100%;
  height: 100%;
}

.campaign-main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
  background: #f3f4f6;
}

.image-container:hover .campaign-main-image {
  transform: scale(1.02);
}

/* Image Counter & Navigation */
.image-counter {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  z-index: 5;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  opacity: 0;
}

.image-container:hover .carousel-nav {
  opacity: 1;
}

.carousel-nav:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav-prev {
  left: 15px;
}

.carousel-nav-next {
  right: 15px;
}

/* Thumbnails */
.thumbnails-grid {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.thumbnails-grid::-webkit-scrollbar {
  display: none;
}

.thumbnails-grid .row {
  flex-wrap: nowrap !important;
  margin: 0 -4px;
}

.thumbnails-grid .row > [class*="col-"] {
  flex: 0 0 auto !important;
  max-width: none !important;
  width: 120px;
  padding: 0 4px;
}

.thumbnail-wrapper {
  position: relative;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  height: 100px;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.thumbnail-wrapper:hover {
  border-color: #106a31;
  transform: translateY(-2px);
}

.thumbnail-wrapper.active {
  border-color: #16a34a;
}

.thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.thumbnail-wrapper:hover img {
  transform: scale(1.1);
}

.thumbnail-number {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: bold;
}

/* Campaign Tabs */
.nav-tabs,
#campaignTab.nav-tabs {
  display: flex;
  border-bottom: 1px solid #dee2e6;
  gap: 4px;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-tabs .nav-item,
#campaignTab.nav-tabs .nav-item {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.nav-tabs .nav-link,
#campaignTab.nav-tabs .nav-link {
  padding: 12px 18px;
  font-weight: 500;
  font-size: 14px;
  color: #6c757d;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.2s ease;
  cursor: pointer;
}

.nav-tabs .nav-link:hover,
#campaignTab.nav-tabs .nav-link:hover {
  color: #16a34a;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
#campaignTab.nav-tabs .nav-link.active {
  color: #16a34a;
  font-weight: 600;
  border-bottom: 2px solid #16a34a;
  background-color: transparent;
}

.nav-tabs .badge,
#campaignTab.nav-tabs .nav-link .badge {
  font-size: 11px;
  padding: 4px 6px;
  margin-left: 0.25rem;
}

/* Mobile Donate Button */
.mobile-donate-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  animation: slideUp 0.3s ease-out;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-donate-btn.hide-on-keyboard {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

/* Add bottom padding to form when keyboard is active */
body.keyboard-active #checkout-form,
body.keyboard-active .contact-form {
  padding-bottom: 120px;
  transition: padding-bottom 0.3s ease;
}

.btn-donate-mobile {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  background: #16a34a;
  border: none;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  transition: all 0.3s ease;
}

.btn-donate-mobile:hover {
  background: #16a34a;
  transform: translateY(-2px);
  color: white;
}

.btn-donate-mobile:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
}

/* ============================= */
/* 4. DONATION FORM STYLES */
/* ============================= */

/* Custom Sections - Simple & Professional */
.donation-section,
.payment-method-section,
.summary-section {
  margin-bottom: 40px;
}

/* Section Headers - Clean & Minimal */
.section-header,
.payment-method-header,
.summary-header {
  padding: 0 0 16px 0;
  border-bottom: 2px solid #e5e7eb;
  margin-bottom: 24px;
}

.section-header h6,
.payment-method-header h6,
.summary-header h6 {
  color: #111827;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  letter-spacing: -0.02em;
}

.section-header h6 i,
.payment-method-header h6 i,
.summary-header h6 i {
  font-size: 20px;
  margin-right: 10px;
  color: #16a34a;
}

/* Section Bodies - Clean Background */
.section-body,
.payment-method-body,
.summary-body {
  padding: 0;
}

/* Platform Fee Specific */
.donation-section .section-body {
  background: #f9fafb;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e5e7eb;
}

/* Payment Method Specific */
.payment-method-body {
  padding: 0;
}

/* Summary Specific - Subtle Highlight */
.summary-section {
  background: #f9fafb;
  border-radius: 12px;
  padding: 24px;
  border: 2px solid #e5e7eb;
}

.summary-header {
  border-bottom: 2px solid #d1d5db;
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.summary-body {
  padding: 0;
}

/* Form Controls */
.form-control-donasi {
  display: block;
  width: 100%;
  padding: 10px 14px;
  font-size: 0.95rem;
  color: #111827;
  background-color: #fff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  caret-color: #15803d;
}

.form-control-donasi:hover {
  border-color: #15803d;
   -webkit-text-fill-color: #15803d !important;
}

.form-control-donasi:focus,
.form-control-donasi:active,
.form-control-donasi:focus-visible {
  border-color: #15803d !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.35) !important,
    0 6px 16px rgba(21, 128, 61, 0.15) !important;
}

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

/* Input Group - Custom Amount */
.input-group {
  display: flex;
  width: 100%;
  margin-top: 8px;
  position: relative;
}

.input-group-prepend {
  display: flex;
  margin-right: -1px;
  z-index: 2;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #374151;
  background-color: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 8px 0 0 8px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.input-group .form-control-donasi {
  flex: 1;
  border-radius: 0 8px 8px 0 !important;
}

.input-group:focus-within .input-group-text {
  background-color: #f0fdf4;
  border-color: #15803d;
  color: #15803d;
}

#custom-amount-wrapper {
  animation: slideDown 0.3s ease-out;
  margin-top: 16px;
}

#custom-amount-wrapper label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

/* Radio Card (Anonymous Selection) */
.radio-card {
  display: block;
  cursor: pointer;
  margin: 0;
}

.radio-card input[type="radio"] {
  display: none;
}

.radio-card-content {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 16px;
  background: white;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  min-height: 80px;
}

.radio-card:hover .radio-card-content {
  border-color: #16a34a;
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.15);
  transform: translateY(-2px);
}

.radio-card input[type="radio"]:checked + .radio-card-content {
  border-color: #16a34a;
  background: linear-gradient(135deg, #f0f8ff 0%, #e3f2fd 100%);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.2);
}

.radio-icon {
  font-size: 32px;
  color: #6c757d;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.radio-card input[type="radio"]:checked + .radio-card-content .radio-icon {
  color: #16a34a;
  transform: scale(1.1);
}

.radio-text {
  flex: 1;
}

.radio-text strong {
  font-size: 16px;
  color: #2d3748;
  display: block;
  margin-bottom: 4px;
}

.radio-text small {
  font-size: 13px;
  line-height: 1.4;
}

.radio-check {
  font-size: 24px;
  color: #e0e0e0;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.radio-card input[type="radio"]:checked + .radio-card-content .radio-check {
  color: #16a34a;
  transform: scale(1.2);
}

/* Payment Method Card */
.payment-method-card {
  display: block;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 0;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.payment-method-card input[type="radio"] {
  display: none;
}

.payment-method-card .card-content {
  border: none;
  border-radius: 0;
  padding: 20px 15px;
  transition: all 0.3s ease;
  background: white;
  position: relative;
}

.payment-method-card:hover {
  border-color: #16a34a;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.2);
  transform: translateY(-3px);
}

.payment-method-card:hover .card-content img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.payment-method-card input[type="radio"]:checked + .card-content {
  background: linear-gradient(135deg, #f0f8ff 0%, #e3f2fd 100%);
}

.payment-method-card:has(input[type="radio"]:checked) {
  border-color: #16a34a;
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.3);
}

.payment-method-card img {
  max-width: 80px;
  height: auto;
  transition: all 0.3s ease;
  filter: grayscale(80%);
  opacity: 0.7;
}

.payment-method-card input[type="radio"]:checked + .card-content img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

.payment-method-card p {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 600;
  color: #495057;
  transition: all 0.3s ease;
}

.payment-method-card input[type="radio"]:checked + .card-content p {
  color: #16a34a;
  font-weight: 700;
}

/* Nominal & Platform Fee Buttons */
.nominal-btn,
.platform-fee-btn {
  width: 100%;
  background-color: #ffffff;
  transition: all 0.3s ease;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.nominal-btn::before,
.platform-fee-btn::before {
  background-color: #ffffff;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.nominal-btn:hover,
.platform-fee-btn:hover {
  background-color: #ffffff;
}

.nominal-btn:hover::before,
.platform-fee-btn:hover::before {
  width: 300px;
  height: 300px;
}

.nominal-btn.active,
.platform-fee-btn.active {
  background-color: white;
  border-color: #16a34a;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
  transform: translateY(-2px);
  font-weight: 700;
}

/* Payment Accordion - Simple & Clean */
#paymentAccordion .card {
  border: 1px solid #e5e7eb;
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

#paymentAccordion .card:hover {
  border-color: #16a34a;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.08);
}

#paymentAccordion .card-header {
  background: transparent;
  border-bottom: none;
  padding: 0;
}

#paymentAccordion .btn-link {
  color: #374151;
  text-decoration: none;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  width: 100%;
  text-align: left;
  background: transparent;
  border-bottom: 1px solid #f3f4f6;
}

#paymentAccordion .btn-link:hover {
  text-decoration: none;
  color: #16a34a;
  background: #f9fafb;
}

#paymentAccordion .btn-link:not(.collapsed) {
  color: #16a34a;
  font-weight: 600;
  background: #f0fdf4;
  border-bottom-color: #16a34a;
}

#paymentAccordion .btn-link i.fa-mobile-alt,
#paymentAccordion .btn-link i.fa-university {
  transition: all 0.3s ease;
}

#paymentAccordion .btn-link:not(.collapsed) i.fa-mobile-alt,
#paymentAccordion .btn-link:not(.collapsed) i.fa-university {
  color: #16a34a;
}

#paymentAccordion .btn-link i.fa-chevron-down {
  transition: transform 0.3s ease;
  color: #9ca3af;
}

#paymentAccordion .btn-link:not(.collapsed) i.fa-chevron-down {
  transform: rotate(180deg);
  color: #16a34a;
}

#paymentAccordion .card-body {
  padding: 20px;
  background: #fafbfc;
  border-top: 1px solid #f3f4f6;
}

/* Custom Amount Input */
#custom-amount-input {
  font-size: 1.1rem;
  font-weight: 600;
  border: 2px solid #ced4da;
  transition: all 0.3s ease;
}

#custom-amount-input:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 0.2rem rgba(22, 163, 74, 0.15);
  transform: translateY(-2px);
}

/* ============================= */
/* 5. ANIMATIONS */
/* ============================= */

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#platform-fee-card {
  animation: slideDown 0.4s ease-out;
}

#custom-amount-wrapper {
  animation: slideDown 0.3s ease-out;
}

/* ============================= */
/* 6. RESPONSIVE STYLES */
/* ============================= */

/* Desktop (min-width: 992px) */
@media (min-width: 992px) {
  .campaign-detail-title {
    font-size: 32px;
    max-width: 900px;
  }

  .campaign-detail-price {
    font-size: 28px;
  }

  #campaignTab.nav-tabs {
    gap: 0;
  }

  #campaignTab.nav-tabs .nav-item {
    flex: 1 1 0;
    text-align: center;
  }

  #campaignTab.nav-tabs .nav-link {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
  }
}

/* Tablet (max-width: 991.98px) */
@media (max-width: 991.98px) {
  .campaign-detail-title {
    font-size: 26px;
  }

  .campaign-detail-price {
    font-size: 24px;
  }

  #campaignTab.nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 4px;
  }

  #campaignTab.nav-tabs::-webkit-scrollbar {
    display: none;
  }
}

/* Medium Mobile (max-width: 767.98px) */
@media (max-width: 767.98px) {
  .thumbnails-grid .row > [class*="col-"] {
    width: 100px;
  }

  .thumbnail-wrapper {
    height: 80px;
  }

  .carousel-nav {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .carousel-nav-prev {
    left: 10px;
  }

  .carousel-nav-next {
    right: 10px;
  }

  .radio-card-content {
    min-height: auto;
    padding: 12px;
  }

  .radio-icon {
    font-size: 24px;
  }

  .radio-text strong {
    font-size: 14px;
  }

  .radio-text small {
    font-size: 12px;
  }

  .payment-method-card img {
    max-width: 60px;
  }

  .payment-method-card .card-content {
    padding: 15px 10px;
  }
}

/* Mobile (max-width: 575.98px) */
@media (max-width: 575.98px) {
  .campaign-detail-title {
    font-size: 20px;
    line-height: 1.35;
  }

  .campaign-detail-subtitle {
    font-size: 13px;
  }

  .campaign-detail-price {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .thumbnails-grid .row > [class*="col-"] {
    width: 90px;
  }

  .thumbnail-wrapper {
    height: 70px;
  }

  .carousel-nav {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }

  .image-counter {
    font-size: 12px;
    padding: 6px 12px;
    bottom: 10px;
    right: 10px;
  }

  .mobile-donate-btn {
    padding: 12px;
  }

  .btn-donate-mobile {
    padding: 14px 20px;
    font-size: 15px;
  }

  #campaignTab.nav-tabs {
    flex-direction: column;
    gap: 0;
  }

  #campaignTab.nav-tabs .nav-item {
    width: 100%;
  }

  #campaignTab.nav-tabs .nav-link {
    width: 100%;
    text-align: left;
    padding: 12px 14px;
    font-size: 14px;
    border-bottom: 1px solid #e5e7eb;
    border-left: 4px solid transparent;
    justify-content: flex-start;
  }

  #campaignTab.nav-tabs .nav-link.active {
    border-left: 4px solid #16a34a;
    border-bottom: 1px solid #e5e7eb;
  }

  #campaignTab.nav-tabs .nav-link:hover {
    border-left-color: #16a34a;
  }
}

/* ============================= */
/* 7. KEYBOARD DETECTION HELPER */
/* ============================= */
