:root {
  --brand: #FF7600;
  --brand-dark: #D96400;
  --brand-light: #FFF3E6;
  --navy: #002D5A;
  --navy-mid: #1A4A7A;
  --text-primary: #1A1A1A;
  --text-secondary: #555;
  --text-muted: #888;
  --surface: #FFFFFF;
  --surface-soft: #F8F6F2;
  --surface-warm: #FDFAF6;
  --border: #E8E3DA;
  --border-light: #F0EBE1;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--surface-warm);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--brand);
}
.header-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo span { color: var(--brand); }
.header-nav { display: flex; gap: 6px; align-items: center; }
.header-nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.header-nav a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.btn-register {
  background: var(--brand) !important;
  color: #fff !important;
  font-weight: 500;
  border-radius: 20px !important;
  padding: 7px 18px !important;
}
.btn-register:hover { background: var(--brand-dark) !important; }

/* ── BREADCRUMB ── */
.breadcrumb-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
  margin-top: 110px;
}
.breadcrumb-inner {
  max-width: 80%;
  margin: auto;
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumb-inner a { color: var(--brand); text-decoration: none; }
.breadcrumb-inner a:hover { text-decoration: underline; }

/* ── PAGE WRAPPER ── */
.page-wrapper {
  max-width: 80%;
  margin: 0 auto;
  padding: 32px 24px 64px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

/* ── HERO SECTION ── */
.page-hero {
  grid-column: 1 / -1;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.hero-left { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,118,0,0.15);
  border: 1px solid rgba(255,118,0,0.3);
  color: var(--brand);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.hero-badge::before { content: '●'; font-size: 7px; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }
.hero-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.2px;
  margin: 0;
}
.hero-title em { color: var(--brand); font-style: italic; }
.hero-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin: 2px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.hero-stats {
  display: flex;
  gap: 20px;
  align-items: center;
}
.hero-stat {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-right: none; padding-right: 0; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.hero-stat-num span { color: var(--brand); }
.hero-stat-label { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.hero-actions { display: flex; gap: 8px; align-items: center; }
.btn-primary {
  background: var(--brand) !important;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  display: inline-block;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(255,118,0,0.35); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75);
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s;
  display: inline-block;
  white-space: nowrap;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

/* ── SIDEBAR FILTER ── */
.sidebar {
  position: sticky;
  top: 80px;
  margin-right: 0 !important;
}
.filter-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.filter-header {
  background: var(--brand);
  padding: 14px 20px;
  font-weight: 600;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.2px;
}
.filter-body { padding: 16px 20px; }
.filter-group { margin-bottom: 14px; }
.filter-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 5px;
}
.filter-input {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-primary);
  background: var(--surface-soft);
  transition: border-color 0.2s;
  outline: none;
}
.filter-input:focus { border-color: var(--brand); background: #fff; }
.filter-select {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-primary);
  background: var(--surface-soft);
  cursor: pointer;
  outline: none;
}
.btn-filter {
  width: 100%;
  padding: 11px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  margin-top: 8px;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.btn-filter:hover { background: var(--navy-mid); }

.sidebar-promo {
  margin-top: 16px;
  background: linear-gradient(135deg, var(--brand-light), #fff);
  border: 1px solid rgba(255,118,0,0.2);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
}
.sidebar-promo h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.sidebar-promo p { font-size: 12px; color: var(--text-secondary); margin-bottom: 14px; }
.btn-subscribe {
  display: block;
  background: var(--brand);
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-subscribe:hover { background: var(--brand-dark); }

/* Country grid */
.section-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.section-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.country-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.country-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px 6px 8px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.country-card:hover {
  border-color: var(--brand);
  background: var(--brand-light);
  color: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.country-flag { font-size: 18px; line-height: 1; }
.country-count {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
  background: var(--surface-soft);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 1px 6px;
  margin-left: 2px;
}

/* Tender table */
.tender-panel {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
  width: 100%;
}
.panel-header {
  background: var(--navy);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.panel-header h2 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.2px;
}
.panel-badge {
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
}
.table-wrap { overflow-x: auto; width: 100%; }
.dataTables_wrapper { width: 100% !important; }
table.tender-table { width: 100%; min-width: 100%; }
.table-wrap { overflow-x: auto; width: 100%; }
table.tender-table { width: 100%; min-width: 100%; }
.table-wrap { overflow-x: auto; width: 100%; }
table.tender-table {
  width: 100%;
  min-width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
table.tender-table thead th {
  background: var(--surface-soft);
  padding: 11px 14px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
table.tender-table tbody tr {
  border-bottom: 1px solid var(--border-light);
  transition: background 0.15s;
}
table.tender-table tbody tr:last-child { border-bottom: none; }
table.tender-table tbody tr:hover { background: var(--surface-soft); }
table.tender-table td {
  padding: 11px 14px;
  vertical-align: top;
  color: var(--text-primary);
}
.td-id { color: var(--text-muted); font-size: 11px; }
.td-location { font-weight: 500; white-space: nowrap; }
.td-summary { line-height: 1.4; }
.td-deadline { white-space: nowrap; }
.sector-tag {
  display: inline-block;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.deadline-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-dark);
  background: var(--brand-light);
  padding: 3px 8px;
  border-radius: 6px;
}
.tender-link { color: var(--navy); text-decoration: none; font-weight: 500; }
.tender-link:hover { color: var(--brand); text-decoration: underline; }

/* Info section */
.info-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
article.info-section
{
  height: 300px;
  overflow: auto;
}
.info-section h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}
.info-section h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin: 24px 0 10px;
}
.info-section p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 12px;
}
.info-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.info-item::before { content: '→'; color: var(--brand); font-weight: 600; flex-shrink: 0; margin-top: 1px; }

/* Country list */
.country-list-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.clsection-header {
  background: var(--surface-soft);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
}
.clsection-header h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}
.country-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 20px 24px;
  gap: 4px 16px;
}
.cl-item a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 13px;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}
.cl-item a:hover { background: var(--brand-light); color: var(--brand-dark); }
.cl-flag { font-size: 16px; line-height: 1; flex-shrink: 0; }
.cl-count {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1px 6px;
  min-width: 48px;
  text-align: center;
  margin-left: auto;
}

/* FAQ section */
.faq-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.faq-section h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}
.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 14px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.faq-q::after { content: '+'; color: var(--brand); font-weight: 400; font-size: 18px; flex-shrink: 0; }
.faq-a {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* CTA Banner */
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,118,0,0.12), transparent 70%);
  border-radius: 50%;
  z-index: -99999999;
}
.cta-banner h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.cta-banner p { font-size: 14px; color: rgba(255,255,255,0.6); }
.cta-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* SECTOR TAGS */
.sector-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}
.sector-tag-link {
  display: inline-block;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12px;
  color: var(--text-secondary);
  padding: 4px 12px;
  text-decoration: none;
  transition: all 0.15s;
}
.sector-tag-link:hover { background: var(--brand-light); border-color: rgba(255,118,0,0.3); color: var(--brand-dark); }

/* Footer */
.site-footer {
  background: var(--navy);
  padding: 28px 24px;
  margin-top: 0;
}
.footer-inner {
  max-width: 1280px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 13px; text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }

/* Floating CTA */
.float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 28px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.2s;
}
.float-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
.float-btn-brand { background: var(--brand); color: #fff; }
.float-btn-wa { background: #25D366; color: #fff; }

#example tr > th,
#example tr > td.td-deadline,
#example tr > td.td-date_c,
#example tr > td.td-location,
#example tr > td.td-id {
    text-align: center !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 1366px) {
    .page-wrapper { padding: 14px 14px 56px; gap: 20px; max-width: 100%;}
}

/* Tablet — collapse sidebar below content */
@media (max-width: 900px) {
  #mo_footer_links > .row{margin-left: 0 !important;flex-direction: column;align-items: baseline !important;}
  .page-wrapper {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
    order: 2; /* sidebar below main on tablet */
  }
  .main-content { order: 1; }
  .page-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
  }
  .hero-left { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-right {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    width: 100%;
  }
  .hero-stats { gap: 10px; flex-wrap: wrap; }
  .hero-stat { padding: 0 10px; }
  .hero-actions { flex-wrap: wrap; gap: 8px; }
  .info-grid { grid-template-columns: 1fr; }
  .country-list-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 24px;
    gap: 16px;
  }
  .cta-banner-actions { width: 100%; }
  .cta-banner-actions .btn-primary { display: inline-block; }
}

/* Mobile — full single column, hamburger nav */
@media (max-width: 640px) {
  #mo_footer_links > .row{margin-left: 0 !important;flex-direction: column;align-items: baseline !important;}
  /* Header */
  .header-inner { height: 56px; padding: 0 16px; }
  .nav-toggle { display: flex; }
  .header-nav {
    display: none;
    position: absolute;
    top: 56px;
    left: 0; right: 0;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-direction: column;
    padding: 12px 16px 16px;
    gap: 2px;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  }
  .header-nav.nav-open { display: flex; }
  .header-nav a {
    font-size: 15px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    display: block;
  }
  .btn-register {
    margin-top: 6px;
    text-align: center;
    border-radius: var(--radius-md) !important;
  }

  /* Layout */
  .page-wrapper { padding: 14px 14px 56px; gap: 20px; max-width: 100%;}
  .breadcrumb-bar { padding: 8px 14px; margin-top: 138px; }

  /* Hero */
  .page-hero { padding: 16px; gap: 12px; border-radius: var(--radius-md); }
  .hero-badge { font-size: 10px; }
  .hero-title { font-size: 17px; }
  .hero-desc { white-space: normal; font-size: 12px; }
  .hero-stats { gap: 0; width: 100%; justify-content: space-between; }
  .hero-stat {
    padding: 0 8px;
    flex: 1;
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  .hero-stat:last-child { border-right: none; }
  .hero-stat-num { font-size: 15px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { flex: 1; text-align: center; padding: 10px 12px; }

  /* Tender table → card layout */
  .table-wrap { overflow-x: auto; width: 100%; }
  table.tender-table { width: 100%; min-width: 100%; }
  table.tender-table thead { display: none; }
  table.tender-table tbody tr {
    display: block;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    position: relative;
    width: 92vw;
  }
  table.tender-table td {
    display: block;
    padding: 2px 0 !important;
    border: none;
  }
  table.tender-table td.td-id {
    font-size: 10px;
    color: var(--text-muted);
    margin-bottom: 4px;
  }
  table.tender-table td.td-location {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
    margin-right: 8px;
  }
  table.tender-table td.td-sector {
    display: inline-block;
    margin-bottom: 6px;
  }
  table.tender-table td.td-summary {
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 8px;
  }
  table.tender-table td.td-deadline {
    display: inline-block;
  }
  /* Hide the date column on mobile to save space */
  /* table.tender-table td:nth-child(4) { display: none; } */

  /* Table footer / pagination */
  .table-footer { flex-direction: column; align-items: flex-start; gap: 10px; padding: 12px 16px 14px; }
  .pagination { flex-wrap: wrap; gap: 4px; }
  /* Hide middle page numbers on mobile */
  .page-ellipsis,
  .page-btn:not(.page-first):not(.page-prev):not(.page-next):not(.page-last):not(.page-active) { display: none; }

  /* Info section */
  .info-section { padding: 20px 18px; }
  .faq-section { padding: 20px 18px; }
  .faq-q { font-size: 13px; }
  .section-title { font-size: 18px; }

  /* Country list */
  .country-list-grid { grid-template-columns: 1fr; padding: 14px 16px; }
  .clsection-header { padding: 12px 16px; }

  /* CTA banner */
  .cta-banner { padding: 20px 18px; border-radius: var(--radius-md); }
  .cta-banner h3 { font-size: 18px; }

  /* Floating CTA */
  .float-cta { bottom: 14px; right: 14px; gap: 8px; }
  .float-btn { padding: 10px 14px; font-size: 12px; }

  /* Panel header wraps nicely */
  .panel-header { flex-wrap: wrap; gap: 8px; }
  .panel-header h2 { font-size: 13px; }

  /* Sidebar */
  .filter-card { border-radius: var(--radius-md); }
  .sidebar-promo { border-radius: var(--radius-md); padding: 16px; }
  /* Override table sizing for mobile */
  .table-wrap { overflow-x: auto; width: 100%; }
  table.tender-table { width: 100%; min-width: 100%; }
  div.dt-container.dt-empty-footer tbody>tr:last-child>*{border: none !important;}
  #example tr > th,
  #example tr > td.td-deadline,
  #example tr > td.td-date_c,
  #example tr > td.td-location,
  #example tr > td.td-id {
      text-align: left !important;
  }
}
  
.select2-container-multi .select2-choices
{
    background: none !important;
    border: none !important;
    height: 30px !important;
    display: flex;
    align-items: center;
}
.select2-search-choice
{
    display: flex;
    align-items: center;
    margin: 0 !important;
    padding: 6px !important;
    flex-direction: row-reverse;
    width: auto;
    justify-content: space-between;
    border-radius: 6px !important;
}
.select2-search-choice-close
{
    position: relative;
    top: 0;
    left: 0 !important;
    right: 0;
}
.daterangepicker
{
    display: none !important;
}