.badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: bold;
  }
  
  .text-bg-danger {
    background-color: #dc3545;
    color: #fff;
  }

  .text-bg-success {
    background-color: #28a745;
    color: #fff;
  }

  .text-bg-light {
    background-color: #c5c5c5;
    color: #fff;
  }

  .text-spellcheck {
    color: #f6a4a4;
    text-decoration: line-through;
  }
  

  .cookie-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7); /* Transparent black background */
    text-align: center;
    font-size: 14px;
    font-family: "THICCCBOI", sans-serif;
    color: white; /* Text color */
    z-index: 9999;
  }
  
  .cookie-container button {
    padding: 5px 10px;
    margin: 0 10px;
    color: white;
    border: none;
    font-size: 14px;
    cursor: pointer;
  }

  .accept-btn{
    background: #00ce8f;
  }

  .reject-btn{
    background: #f68b77;
  }