
    /* Modal Backdrop */
    #saved_accounts_lists_wrapper {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(8, 9, 13, 0.85);
      -webkit-backdrop-filter: blur(8px);
      backdrop-filter: blur(8px);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    /* Popup Window Card */
    .sas-popup-card {
      box-sizing: border-box;
      background: #11131a;
      border: 1px solid rgb(0,140,230);
      border-radius: 16px;
      width: 95%;
      max-width: 440px;
      padding: 28px;
      box-shadow: 0 0 30px rgba(0, 240, 255, 0.1), 0 10px 40px rgba(0, 0, 0, 0.5);
      position: relative;
      animation: fadeIn 0.3s ease-out forwards;
    }

    @keyframes fadeIn {
      from { transform: scale(0.95); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    /* Header Styling */
    .sas-popup-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px;
    }

    .sas-popup-title {
      color: #ffffff;
      font-size: 1.35rem;
      font-weight: 700;
      letter-spacing: -0.5px;
    }

    #sas_close_btn {
      background: none;
      border: none;
      color: #ffffff;
      font-size: 1.5rem;
      cursor: pointer;
      transition: color 0.2s;
      box-shadow: unset !important;
    }

    #sas_close_btn:hover {
      color: #00f0ff;
    }

    /* Account List */
    .sas-account-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 24px;
      max-height: 280px;
      overflow-y: auto;
      padding-right: 4px;
      padding-top:10px
    }

    /* Custom Scrollbar */
    .sas-account-list::-webkit-scrollbar {
      width: 6px;
    }
    .sas-account-list::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.02);
    }
    .sas-account-list::-webkit-scrollbar-thumb {
      background: rgba(0, 240, 255, 0.2);
      border-radius: 3px;
    }

    /* Account Row Item */
    .sas-account-item {
      display: flex;
      align-items: center;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      padding: 12px 16px;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .sas-account-item:hover {
      background: rgba(0, 140, 230, 0.05);
      border-color: rgb(0,140,230);
      transform: translateY(-1px);
    }

    /* Profile Pic / Initials Avatar */
    .sas-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: #fff;
      font-size: 1rem;
      margin-right: 14px;
      flex-shrink: 0;
      border: 2px solid rgba(255, 255, 255, 0.1);
    }

    .sas-avatar.gradient-1 {
      background: linear-gradient(135deg, #00f0ff, #7000ff);
    }

    .sas-avatar.gradient-2 {
      background: linear-gradient(135deg, #ff007a, #7000ff);
    }

    .sas-avatar.gradient-3 {
      background: linear-gradient(135deg, #00f0ff, #00ff87);
    }

    /* Account Info Text */
    .sas-account-info {
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .sas-account-name {
      color: #f8fafc;
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 2px;
    }

    .sas-account-type {
      font-size: 0.75rem;
      color: #94a3b8;
      display: inline-block;
      align-self: flex-start;
      background: rgba(255, 255, 255, 0.06);
      padding: 2px 8px;
      border-radius: 12px;
      font-weight: 500;
      letter-spacing: 0.2px;
    }

    /* Action Buttons */
    .sas-remove-account-btn {
      background: transparent;
      border: none;
      color: #64748b;
      cursor: pointer;
      padding: 8px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      border-width: 0;
      box-shadow: unset !important;
    }

    .sas-remove-account-btn:hover {
      background: rgba(ef, 68, 68, 0.1);
      color: #ff4a4a;
    }

    /* Footer Buttons */
    .sas-popup-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 18px;
    }

    .sas-remove-all-btn {
      background: transparent;
      border: none;
      color: #94a3b8;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      padding: 8px 12px;
      border-radius: 8px;
      transition: all 0.2s;
    }

    .sas-remove-all-btn:hover {
      color: #ff4a4a;
      background: rgba(255, 74, 74, 0.08);
    }

    .sas-add-account-btn {
      background: linear-gradient(90deg, #00f0ff, #7000ff);
      border: none;
      color: #ffffff;
      padding: 10px 18px;
      border-radius: 8px;
      font-size: 0.85rem;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .sas-add-account-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    }

