.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1E1A2E;
    padding: 20px;
    color: white;
    display: flex;
    justify-content: center;
    z-index: 9999;
  }
  
  .cookie-content {
    max-width: 800px;
  }
  
  .cb-btn {
    padding: 10px 16px;
    border: none;
    cursor: pointer;
    background: #5C4F6E;
    color: white;
    margin-right: 10px;
    border-radius: 6px;
  }
  
  .cb-btn.primary { background: #BBA0FF; color: #1E1A2E; }
  .cb-btn.secondary { background: #FFFFFF; color: #1E1A2E; }
  
  .cookie-settings.hidden { display: none; }

  .cookie-settings {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #1E1A2E;
    display: flex; justify-content: center; align-items: center;
    flex-direction: column;
    z-index: 10000;
  }
  
  .cookie-settings-box {
    display: flex;
    flex-direction: column;
    background: #1E1A2E;
    padding: 25px;
    border-radius: 8px;
    width: 350px;
  }
  