/* Backdrop */
.cookie-banner-backdrop {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: none;
    justify-content: flex-end; /* Align to bottom-right for desktop */
    z-index: 1000;
    pointer-events: none; /* Prevent backdrop from interfering */
  }
  
  /* Show the banner when active */
  .cookie-banner-backdrop.show {
    display: flex;
    pointer-events: auto;
  }
  
  /* Cookie banner container */
  .cookie-banner {
    background-color: white;
    border-radius: 20px;
    padding: 16px;
    padding-top: 0px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px;
    max-width: 400px;
    width: calc(100% - 40px); /* Make it fit on mobile */
  }

  .cookie-banner p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 8px;
  }
  
  /* Header styling */
  .cookie-banner-header {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
  }
  
  /* Body styling */
  .cookie-banner-body {
    font-size: 0.9rem;
    color: #555;
  }
  
  .cookie-banner-body ul {
    margin-left: 20px;
    list-style-type: disc;
  }
  
  /* Footer styling */
  .cookie-banner-footer {
    text-align: right;
  }
  
  .cookie-banner-footer button {
    background-color: #000;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
  }
  
  .cookie-banner-footer button:hover {
    background-color: #006400;
  }
  
  /* Responsive styling for mobile */
  @media (max-width: 768px) {
    .cookie-banner-backdrop {
      justify-content: center; /* Center for mobile */
    }
  }
  