/* styles.css */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2900;
  }
  
  #cookie-banner a {
    color: #00aaff;
    text-decoration: underline;
  }
  
  #cookie-banner button {
    margin-left: 10px;
    padding: 8px 12px;
    border: none;
    background-color: #00aaff;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
  }
  
  #cookie-banner button:hover {
    background-color: #0077cc;
  }
  
  .hidden_pannel {
    display: none;
  }
  