<style>

    #cookieConsent .content {
      text-align: center;
    }
    #cookieConsent {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      max-width: 600px;
      background: #fff;
      color: #000;
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      z-index: 1000;
      animation: slideUp 0.5s ease-out;
      display: none; /* Upewnienie się, że jest widoczny domyślnie */
    }
    @keyframes slideUp {
      from { bottom: -100px; opacity: 0; }
      to { bottom: 20px; opacity: 1; }
    }
    #cookieConsent p {
      margin: 0 0 15px 0;
      font-size: 0.9em;
    }
    #cookieConsent button {
      padding: 10px 20px;
      margin: 0 10px;
      border: none;
      border-radius: 20px;
      cursor: pointer;
      font-weight: bold;
    }
    #acceptCookies {
      background: #000;
      color: #fff;
    }
    #declineCookies {
      background: #fff;
      color: #000;
      border: 1px solid #000;
    }
    #acceptCookies:hover, #declineCookies:hover {
      opacity: 0.9;
    }
   
    #cookieConsent.show {
            display: block;
            margin: auto;
        }
  </style>