/*===============================
=            ROOT              =
===============================*/
:root {
  --primary-color: #4f46e5;
  --secondary-color: #6366f1;
  --bg-color: #f9fafb;
  --card-bg: #ffffff;
  --border-color: #e5e7eb;
  --text-color: #111827;
  --muted-text: #6b7280;
}
/*==========================================
=            BASE AND RESET STYLES        =
==========================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  color: #2c2f36;
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  display: flex;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  flex-direction: column;
  background: #f4f6fa;
  margin: 0;
}

/* ============================
=         STATUS SELECTOR     =
============================ */
.status-selector {
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid #d6dbea;
  font-size: 0.75rem;
  background: #ffffff;
  color: #1f2937;
  outline: none;
  cursor: pointer;
  height: 26px;
}

.status-selector:hover {
  border-color: #2563eb;
}

.status-selector option {
  background: #ffffff;
  color: #1f2937;
}

/* ============================
=         NAVBAR             =
============================ */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  padding: 6px 18px;
  color: #1f2937;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 48px;
  z-index: 1000;
  border-bottom: 1px solid #e4e7f2;
}

/* ============================
=         BRAND              =
============================ */
.nav-brand {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #111827;
  white-space: nowrap;
  line-height: 1;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  align-items: center;
}

/* ============================
=         NAV LINKS          =
============================ */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 16px;
}

.nav-links li a {
  color: #4b5563;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.82rem;
  padding: 2px 4px;
}

.nav-links li a:hover {
  color: #1f2937;
}

/* ============================
=      CALL BUTTON STYLE     =
============================ */
#open-dialer-btn.btn.btn-success.btn-sm {
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 12px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-radius: 6px;
  height: 28px;
  line-height: 1;
  color: #ffffff;
  cursor: pointer;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border: none;
  box-shadow: none;
  text-decoration: none;
  letter-spacing: normal;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  white-space: nowrap;
  min-height: 0;
  min-width: 0;
  -webkit-appearance: none;
  appearance: none;
  user-select: none;
  box-sizing: border-box;
  vertical-align: middle;
}
#open-dialer-btn.btn.btn-success.btn-sm:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: none;
  box-shadow: none;
}
#open-dialer-btn.btn.btn-success.btn-sm:active {
  transform: none;
  box-shadow: none;
}
#open-dialer-btn.btn.btn-success.btn-sm:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.4);
}

#register-btn.btn.btn-primary.btn-sm {
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 6px;
  height: 28px;
  line-height: 1;
  color: #ffffff;
  cursor: pointer;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  border: none;
  box-shadow: none;
  text-decoration: none;
  box-sizing: border-box;
  vertical-align: middle;
  white-space: nowrap;
  -webkit-appearance: none;
  appearance: none;
  margin-left: auto;
}
#register-btn.btn.btn-primary.btn-sm:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
  text-decoration: none;
}

/* ============================
=      PROFILE SECTION       =
============================ */
.profile-info {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f9fd;
  padding: 3px 8px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  flex-shrink: 0;
  max-height: 36px;
  overflow: hidden;
}

/* FIXED: username visibility */
.profile-name {
  font-weight: 500;
  font-size: 0.78rem;
  color: #1f2937;
  white-space: normal;      /* FIX */
  overflow: visible;        /* FIX */
  text-overflow: unset;     /* FIX */
  max-width: none;          /* FIX */
}

.profile-img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #d1d5db;
}

/* ============================
=       DROPDOWN             =
============================ */
.dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #ffffff;
  min-width: 180px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 999;
  border: 1px solid #e5e7eb;
}

.dropdown.show {
  display: flex;
}

.dropdown li {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 0.82rem;
}

.dropdown li:hover {
  background: #f3f4f6;
}

.dropdown li a {
  text-decoration: none;
  color: #1f2937;
}

/* ============================
=       HAMBURGER NAV        =
============================ */
.nav-toggle,
.nav-toggle-label {
  display: none;
}

@media (max-width: 768px) {
  .nav-toggle {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
  }

  .nav-toggle-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }

  .nav-toggle-label span {
    display: block;
    height: 2px;
    width: 20px;
    background: #1f2937;
    border-radius: 2px;
  }

  .nav-links {
    flex-direction: column;
    background: #ffffff;
    position: absolute;
    top: 48px;
    left: 8px;
    right: 8px;
    display: none;
    padding: 12px;
    gap: 8px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links li a {
    display: block;
    padding: 6px 8px;
  }
  .nav-links .profile-info {
    width: 100%;
    max-height: none;
    overflow: visible;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }
}

/*============================
=        LAYOUT              =
============================*/
.layout {
  display: flex;
  min-height: 100vh;
}

/*============================
=        MAIN CONTENT FIX    =
============================*/
.main-content {
  margin-top: 48px; /* EXACT navbar height */
  width: 100%;
}

/*============================
=        SIDEBAR             =
============================*/
.sidebar {
  width: 52px;
  background: #ffffff;
  height: calc(100vh - 48px);
  position: sticky;
  top: 48px;
  border-right: 1px solid #e5e7eb;
  overflow: hidden;
  transition: width 0.2s ease;
  flex-shrink: 0;
}

.sidebar:hover {
  width: 200px;
}

/*============================
=        LIST                =
============================*/
.sidebar ul {
  list-style: none;
  padding: 8px 6px;
  margin: 0;
}

.sidebar ul li {
  margin-bottom: 4px;
}

/*============================
=        LINKS               =
============================*/
.sidebar ul li a,
.sidebar ul li.role-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 6px;
  color: #1f2937;
  text-decoration: none;
  font-size: 0.82rem;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.sidebar ul li a:hover {
  background: #f1f5f9;
}

/*============================
=        ICONS               =
============================*/
.menu-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.menu-icon svg {
  width: 18px;
  height: 18px;
  stroke: #2563eb;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: fill 0.15s ease, stroke 0.15s ease;
}

/*============================
=        ACTIVE STATE        =
============================*/
.sidebar ul li a.active {
  background: #eef2ff;
}

.sidebar ul li a.active .menu-icon svg {
  fill: #2563eb;       /* FILLED ICON */
  stroke: #2563eb;
}

/*============================
=        TEXT                =
============================*/
.menu-text {
  opacity: 0;
  transition: opacity 0.15s ease;
}

.sidebar:hover .menu-text {
  opacity: 1;
}

/*============================
=        ROLE ITEM           =
============================*/
.role-item {
  margin-bottom: 10px;
  font-size: 0.75rem;
  color: #6b7280;
}

/*============================
=         CONTAINER          =
============================*/
.container {
  flex-grow: 1;
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
  overflow-x: auto;
  min-height: calc(100vh - 70px);
}

/*============================
=          ALERT BOX         =
============================*/
.alert {
  background-color: #fde2e4;
  color: #b02a37;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid #f5c2c7;
}


/*============================
=         BADGES             =
============================*/
.status-badge {
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: capitalize;
  display: inline-block;
}

.status-active {
  background-color: #d1fae5;
  color: #065f46;
}

.status-inactive {
  background-color: #fef2f2;
  color: #991b1b;
}

.status-defaulter {
  background-color: #fef9c3;
  color: #92400e;
}

/*============================
=     RECENT ACTIVITY        =
============================*/
.recent-activity-card ul {
  list-style: none;
  padding-left: 1rem;
}

.recent-activity-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}


/*============================
=     ADD LEADS SECTION      =
============================*/
/* General Container */
.add-leads-container {
  max-width: 700px;
  margin: 2rem auto;
  background: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.add-leads-container h2,
.add-leads-container h3 {
  margin-bottom: 1rem;
  color: #333;
  text-align: center;
}

/* Manual Form Section */
.manual-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.manual-form .form-fields p {
  margin: 0.5rem 0;
}

.manual-form input[type="text"],
.manual-form input[type="email"],
.manual-form input[type="number"],
.manual-form input[type="date"],
.manual-form select,
.manual-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #fdfdfd;
}

.btn-primary {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* Divider */
.divider {
  margin: 2rem 0;
  border: 0;
  height: 1px;
  background: #eee;
}

/* CSV Upload Section */
.csv-section {
  text-align: center;
}

.csv-input {
  margin: 1rem 0;
  padding: 0.5rem;
  border: 1px solid #bbb;
  border-radius: 6px;
  display: inline-block;
}

.btn-secondary {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover {
  background-color: #1e7e34;
}

.note {
  margin-top: 0.5rem;
  color: #555;
  font-size: 0.9rem;
}

.note code {
  background: #f1f1f1;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: monospace;
  color: #000;
}


/* General Section Grid */
.section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
  max-width: 1440px;
  margin: 0 auto;
  margin-top: 20px;
}

/* Card Styling */
.card {
  background: #d5d4d4;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===========================
   Headings Styling (h3)
   =========================== */
.card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1d3c6d;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  font-family: 'Roboto', sans-serif;
  transition: color 0.3s ease;
}

.card h3 svg,
.card h3 .icon {
  margin-right: 8px;
  color: #3f51b5;
}

.card h3:hover {
  color: #00bcd4; /* Light blue color on hover */
}


/* ============================
   7. Add Lead Form
   ============================ */
   .status-form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1rem;
    margin-top: 20px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.status-form label {
    font-weight: 600;
    margin-right: 10px;
    white-space: nowrap;
}

.status-form select,
.status-form input[type="number"] {
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    min-width: 160px;
}

.status-form button[type="submit"] {
    background-color: #3f51b5;
    color: #fff;
    font-weight: bold;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.3s ease;
}

.status-form button[type="submit"]:hover {
    background-color: #303f9f;
}

.messages {
    margin-top: 15px;
    padding-left: 20px;
    list-style: disc;
}

.messages li {
    font-size: 14px;
    color: #333;
}

.messages li.success {
    color: green;
}

.messages li.error {
    color: red;
}
/*====================================
=        DASHBOARD CANVAS            =
====================================*/
.main-content {
  background: #f1f5f9;
}

/*====================================
=        DASHBOARD HEADER            =
====================================*/
.dashboard__header {
  font-size: 1.55rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.2rem;
  letter-spacing: 0.2px;
}

/*====================================
=        STATS STRIP (CRM CARDS)     =
====================================*/
.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 1.8rem;
}

.stats-item {
  padding: 0.9rem 1rem;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.stats-item h4 {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #64748b;
  margin-bottom: 0.3rem;
}

.stats-value {
  font-size: 1.45rem;
  font-weight: 700;
  color: #2563eb;
}

/*====================================
=        GRID LAYOUT                =
====================================*/
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  margin-bottom: 1.8rem;
}

/*====================================
=        SECTIONS (CRM PANELS)      =
====================================*/
.chart-panel,
.availability-panel,
.incentive-panel,
.activity-panel {
  padding: 1rem 1.1rem;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

/*====================================
=        SECTION HEADERS            =
====================================*/
.panel-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #e2e8f0;
}

/*====================================
=        CHART AREA                =
====================================*/
canvas {
  width: 100% !important;
  height: auto !important;
  margin-top: 0.6rem;
}

/*====================================
=        AVAILABILITY LIST          =
====================================*/
.availability-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.availability-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  padding: 0.45rem 0.6rem;
  background: #f8fafc;
  border-radius: 6px;
  color: #0f172a;
}

/*====================================
=        INCENTIVE SECTION          =
====================================*/
.progress-bar {
  background: #e2e8f0;
  height: 12px;
  border-radius: 6px;
  margin: 0.6rem 0 0.8rem;
}

.progress-bar__filled {
  background: #22c55e;
  height: 100%;
  border-radius: 6px;
  font-size: 0.6rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel-info {
  font-size: 0.75rem;
  color: #64748b;
}

.bonus-section,
.leaderboard-section {
  margin-top: 1rem;
}

.bonus-list,
.leaderboard-list {
  list-style: none;
  padding-left: 0;
}

.bonus-list li,
.leaderboard-list li {
  font-size: 0.78rem;
  padding: 0.3rem 0;
  color: #0f172a;
}

/*====================================
=        STATUS TEXT               =
====================================*/
.status {
  margin-top: 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #16a34a;
}

/*====================================
=        ACTIVITY SECTION          =
====================================*/
.activity-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0.6rem;
}

.activity-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.75rem;
  padding: 0.45rem 0.6rem;
  background: #f8fafc;
  border-radius: 6px;
  color: #0f172a;
}

.activity-list li span {
  color: #64748b;
  font-weight: 500;
  white-space: nowrap;
}

/*====================================
=        SCROLL ADDITIONS           =
====================================*/
.scroll-panel {
  position: relative;
}

.scroll-content {
  max-height: 240px;
  overflow-y: auto;
  padding-right: 6px;
}

/* WebKit scrollbar */
.scroll-content::-webkit-scrollbar {
  width: 5px;
}

.scroll-content::-webkit-scrollbar-thumb {
  background: #cbd5f5;
  border-radius: 999px;
}

.scroll-content::-webkit-scrollbar-track {
  background: transparent;
}

/* Firefox */
.scroll-content {
  scrollbar-width: thin;
  scrollbar-color: #cbd5f5 transparent;
}

/*====================================
=        RESPONSIVE               =
====================================*/
@media (max-width: 1024px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .stats-section {
    grid-template-columns: 1fr;
  }

  .scroll-content {
    max-height: 200px;
  }
}


/* ============================
  =         NAVBAR             =
  ============================ */


  /* =========================
       DIALER CONTAINER
       ========================= */
    #dialer-dropdown {
      position: fixed;
      top: 70px;
      right: 20px;
      width: 320px;
      background: #ffffff;
      border-radius: 16px;
      box-shadow: 0 16px 40px rgba(0,0,0,0.18);
      z-index: 3000;
      display: none;
      padding: 14px 14px 12px;
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

      /* 🔥 CRITICAL FIX */
      overflow: hidden; /* prevents gradient leaks */
    }

    #dialer-dropdown.show {
      display: block;
    }

    /* =========================
      WEBRTC STATUS (NEW)
    ========================= */
    .webrtc-status {
      text-align: center;
      font-size: 12px;
      font-weight: 600;
      padding: 6px 10px;
      border-radius: 999px;
      margin-bottom: 10px;
    }

    .webrtc-status.initializing {
      background: #fef3c7;
      color: #92400e;
    }

    .webrtc-status.connected {
      background: #dcfce7;
      color: #166534;
    }

    .webrtc-status.error {
      background: #fee2e2;
      color: #991b1b;
    }


    /* =========================
       INPUTS & SELECT
       ========================= */
    #dialer-dropdown input,
    #dialer-dropdown select {
      border-radius: 10px;
      font-size: 13px;
      padding: 8px 10px;
      border: 1px solid #e5e7eb;
      background: #fafafa;
    }

    #dialer-dropdown input:focus,
    #dialer-dropdown select:focus {
      outline: none;
      border-color: #6366f1;
      box-shadow: 0 0 0 2px rgba(99,102,241,0.15);
      background: #ffffff;
    }

    /* =========================
       DIALPAD GRID
       ========================= */
    .dialpad-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-top: 12px;
      text-align: center;
    }

    .dial-btn {
      background: #f8fafc;
      border-radius: 12px;
      padding: 10px 0;
      cursor: pointer;
      user-select: none;
      border: 1px solid #e5e7eb;
      transition: all 0.15s ease-in-out;
    }

    .dial-btn:hover {
      background: #eef2ff;
      border-color: #c7d2fe;
      transform: translateY(-1px);
    }

    .dial-btn:active {
      transform: scale(0.97);
    }

    .dial-btn .num {
      font-size: 18px;
      font-weight: 600;
      color: #2563eb;
      line-height: 1.2;
    }

    .dial-btn .letters {
      font-size: 9px;
      color: #6b7280;
      margin-top: 2px;
      letter-spacing: 0.5px;
    }

    /* =========================
       CALL BUTTON
       ========================= */
    .green-call-btn {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: linear-gradient(135deg, #22c55e, #16a34a);
      color: #ffffff;
      font-size: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 12px auto 6px;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(34,197,94,0.35);
      transition: all 0.15s ease-in-out;
    }

    .green-call-btn:hover { transform: scale(1.05); }
    .green-call-btn:active { transform: scale(0.95); }

    /* =========================
       TIMER
       ========================= */
    #call-timer {
      font-size: 13px;
      font-weight: 500;
      color: #374151;
    }

    /* =========================
       ACTION BAR
       ========================= */
    .call-action-bar {
      display: flex;
      justify-content: space-between;
      margin-top: 10px;
      gap: 6px;
    }

    .call-action-bar button {
      flex: 1;
      font-size: 11px;
      padding: 6px 0;
      border-radius: 8px;
      border: none;
      font-weight: 600;
      letter-spacing: 0.3px;
      transition: all 0.15s ease-in-out;

      /* 🔥 IMPORTANT FIX */
      background-image: none !important; /* removes gradient pills */
      box-shadow: none !important;
    }

    .call-action-bar .btn-secondary {
      background: #e5e7eb;
      color: #374151;
    }

    .call-action-bar .btn-warning {
      background: #fef3c7;
      color: #92400e;
    }

    .call-action-bar .btn-info {
      background: #e0f2fe;
      color: #075985;
    }

    .call-action-bar .btn-danger {
      background: #fee2e2;
      color: #991b1b;
    }

    .call-action-bar button:hover {
      filter: brightness(0.95);
    }

