#cookieNotice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2C2E7F;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    z-index: 1000;
    display: none; /* Initially hidden */
  }
  #cookieNotice button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-left: 20px;
    border-radius: 5px;
  }
  #cookieNotice button:hover {
    background-color: #45a049;
  }