:root {

}
:root {
    --bs-body-bg: #F4F6F8;
    --bs-body-color: #1A1A1A;
    --bs-primary: #14C8B9;
    --bs-secondary: #6B7280;
    --bs-success: #22C55E;
    --bs-danger: #EF4444;
    --bs-info: #0EA5E9;
  }


a[target="_blank"]::after {
    content: " ↗"; /* Use an appropriate icon file */
    display: inline-block;
    margin-left: 5px; /* Add space between the link text and the icon */
    vertical-align: middle; /* Align the icon with the text */
}

media (min-width: 768px) {
    .popover {
        max-width: 350px;
        width: 350px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .popover {
        max-width: 450px;
        width: 450px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .popover {
        max-width: 600px;
        width: 600px;
    }
}


  

  .card {
    border-radius: 15px;;
  }
  
  .btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
  }
  
  .btn-primary:hover {
    background-color: #0EA89E;
    border-color: #0EA89E;
  }

  .bg-light-purple {
    background-color: #F7F3FA;

  }

  .bg-gradient-primary {
    background: linear-gradient(90deg, #14C8B9, #A78BFA);
  }

  .glass {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(221, 183, 240, 0.3);
  }
  .text-purple {
    color: #A855F7;
  }

