/* cookie-banner.css */
.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #131b2b;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    z-index: 9999;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-out;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
  }
  
  .cookie-banner p {
    margin: 0 20px 10px 0;
    font-size: 16px;
    line-height: 1.4;
  }
  
  .cookie-btn {
    background-color: #219b9d;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .cookie-btn:hover {
    background-color: #8c52ff;
  }
  
  .hidden {
    transform: translateY(150%);
  }
  