#cookie-popup {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f2f2f2;
    padding: 20px;
    text-align: center;
    
  }
  
  #cookie-popup p {
    margin: 0;
  }
  
  #cookie-popup button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 10px;
    cursor: pointer;
    width: 80%;
  }
  
  #cookie-popup button:hover {
    background-color: #3e8e41;
  }
  