/* Style for the cookie notice */
  .cookie-notice {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 260px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
    z-index: 1000;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;
  }

  .cookie-notice p {
    margin: 0 0 10px 0;
    color: #333;
  }

  .cookie-link {
    color: #0a1a2e;
    text-decoration: none;
  }

  .cookie-link:hover {
    text-decoration: underline;
  }

  .cookie-notice a{
    text-decoration: underline;
  }

  .cookie-btn {
    background-color: #0a1a2e; /* Blue button */
    color: white;
    border: none;
    width: 100%;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
  }