 #cookie-popup {
      position: fixed;
      bottom: 20px;
      left: 20px;
      right: 20px;
      max-width: 500px;
      margin: 0 auto;
      background-color: white;
      color: black;
      padding: 20px;
      border: 1px solid #ccc;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      border-radius: 8px;
      z-index: 9999;
      display: none;
    }

    #cookie-popup button {
      background-color: #ce7e00;
      color: white;
      border: none;
      padding: 10px 20px;
      font-size: 14px;
      cursor: pointer;
      border-radius: 5px;
      margin-top: 10px;
    }

    #cookie-popup button:hover {
      background-color: #b56d00;
    }