/* The pill button */
  .login-pill {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 999px;
    background: var(--secondary-color);
    /* border: 1px solid rgba(255,255,255,0.2); */
    backdrop-filter: blur(6px);
    cursor: pointer;
    font-weight: bold;
    color: #fff;
    transition: background 0.2s;
    position: relative;
    z-index: 1;
    font-size: 12px;
    right: 25px;
    top: 8px;
  }

  .login-pill:hover {
    background: rgba(255,255,255,0.2);
  }

  /* Overlay */
  .overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(2px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9998;
  }

  /* Popup box */
  .popup {
    position: fixed;
    z-index: 9999;
    /* left: calc(48.5% + var(--sidebar-offset)); */
    left: 50%;
    transform: translateX(-50%);
    top: 40%;
    background: color-mix(in srgb, var(--sidebar-color) 90%, black);
    padding: 30px 40px;
    border-radius: 12px;
    max-width: 320px;
    width: 90%;
    text-align: center;
    color: #fff;
    display: none;
  }

  .popup h2 {
    margin-top: 0;
  }

  .popup .login-option {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 999px;
    background: transparent;
    /* color: white; */
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
  }

  /* .popup .login-option:hover {
    background: #2563eb;
  } */

  /* Close button */
  .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 20px;
    cursor: pointer;
  }