#cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 320px;
    background-color: #323232;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    font-family: Arial, sans-serif;
    font-size: 14px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 15px;
  }

  #cookie-banner p {
    margin: 0;
    flex: 1;
    line-height: 1.4;
  }

  #cookie-banner a {
    color: #4caf50;
    text-decoration: underline;
  }

  #cookie-banner button {
    background-color: #4caf50;
    border: none;
    color: white;
    padding: 8px 14px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  #cookie-banner button:hover {
    background-color: #45a049;
  }