:root {
  --backgroundColor: #0d2b52;  /* Blue */
  --textColor: #EFDC75;        /* Yellow */
  --scrollbarThumb: #0d2b52;
  --scrollbarThumbHover: #0d2b52;
  --scrollbarTrack: #f0f0f0;
  --scrollbarSize: 8px;
}

/* #region Global styling */
* {
    font-family: "Open Sans", sans-serif;
    letter-spacing: 2px;
}
body {
    background-color: #f0f0f0;
    background-image:
      linear-gradient(to right, #d4d4d4 1px, transparent 1px),
      linear-gradient(to bottom, #d4d4d4 1px, transparent 1px);
    background-size: 40px 40px;
  }
/* body {
    background-image: 
      linear-gradient(to right, #f8f6f6 1px, transparent 1px),
      linear-gradient(to bottom, #f8f6f6 1px, transparent 1px);
    background-size: 40px 40px; 
  } */
   
.main-board {
  width: 80%;
  min-width: 880px;
  margin: 20px auto;
}

#home-layout {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

#home-layout > .main-board {
  flex: 1;
  min-width: 0;
  width: auto;
  max-width: none;
}

#side-banner-left {
  display: none;
  position: relative;
  top: 20px;
  width: 160px;
  flex-shrink: 0;
  align-self: flex-start;
  flex-direction: column;
  align-items: flex-start;
  margin: 20px 0 0 0;
  right: 10px;
}

#side-banner {
  display: none;
  position: relative;
  top: 20px;
  width: 160px;
  flex-shrink: 0;
  align-self: flex-start;
  flex-direction: column;
  align-items: flex-start;
  margin: 20px 0 0 0;
  right: 10px;
}

.board {
  width: 100%;          /* 100% of .main-board, not the page */
  max-width: 95%;    /* so it doesn’t grow too wide */
  margin: 20px auto;    /* now this can center it inside .main-board */
  background-color: rgba(255, 255, 255);
  padding: 10px;
  box-shadow: 
    0px 6px 12px -2px rgba(0,0,0,0.5),
    0px 3px 7px -3px rgba(0,0,0,0.5);
  overflow: visible;
}

/* ── Toggle switch ─────────────────────────────────────── */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 148px;
    height: 48px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    background: #d4d4d4;
    border: 2px solid #111;
    box-shadow: inset 3px 3px 0 #999;
}

.toggle-knob {
    position: absolute;
    left: -5px;
    top: -4px;
    width: 60px;
    height: 87%;
    background: linear-gradient(180deg, #ffffff 0%, #d8d8d8 100%);
    color: #000;
    border: 3px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Open Sans", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.8),
        inset 0 -1px 0 rgba(0,0,0,0.15),
        1px 1px 0 #000, 2px 2px 0 #000, 3px 3px 0 #000, 4px 4px 0 #000, 5px 5px 0 #000;
    transition: left .22s cubic-bezier(.4, 0, .2, 1), background .2s, color .2s;
    user-select: none;
}

.toggle-switch input:checked ~ .toggle-slider .toggle-knob {
    left: calc(100% - 69px);
    background: #16a34a;
    color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.3),
        inset 0 -1px 0 rgba(0,0,0,0.2),
        1px 1px 0 #000, 2px 2px 0 #000, 3px 3px 0 #000, 4px 4px 0 #000, 5px 5px 0 #000;
}

.modal-box {
  background: #fff;
  border: 2px solid #000;
  box-shadow: 4px 4px 0px 0px #000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.button {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    color: #000;
    cursor: pointer;
    border: 3px solid #000;
    padding: 0.25em 0.5em;
    box-shadow: 
        1px 1px 0px 0px #000,
        2px 2px 0px 0px #000,
        3px 3px 0px 0px #000,
        4px 4px 0px 0px #000,
        5px 5px 0px 0px #000; /* fixed color */
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    margin: 10px 5px 5px 5px;
    transition: color 0.2s ease; /* smooth only for text */
}

.button:active {
  box-shadow: 0px 0px 0px 0px;
  top: 5px;
  left: 5px;
}

.button:hover {
    background-color: var(--backgroundColor);
    color: var(--textColor);
    border-color: #000000; /* match text color or a highlight */
}

@media (min-width: 768px) {
  .button {
    padding: 0.25em 0.75em;
  }
}

  
input{
    padding: 5px;
}

h2 {
    display: inline;
}

h3 {
    /* text-decoration: underline; */
}

h4 {
    margin-bottom: 10px;
}

p {
    /* border: solid 2px black; */
}

/* .hidden {
    visibility: hidden; 
    height: 0;          
    overflow: hidden;   
} */
.hidden {
    display: none;
}

input::placeholder {
    color: black; /* Change the color to match normal text */
    font-weight: normal; /* Adjust weight if needed */
    opacity: 1; /* Some browsers reduce opacity by default */
}


/* #endregion */
/* --------------------------------------------------------------------------- */
/* #region Page specific Css */
html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Ensures padding and borders are included in element's total width/height */
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    scrollbar-gutter: stable;
}

.body{
    flex: 1;
    
}

#header {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto auto; /* last two hug each other */
    grid-template-areas: "socialQ . . notifBell loginProfile"; /* Define areas */
    height: 40px;
    justify-items: end; /* Align grid items to the right */
    width: 80%;
    min-width: fit-content;
    background-color: var(--textColor);
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;

    box-shadow:
    0px 6px 12px -2px black,
    0px 3px 7px -3px black;
  }

  #header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 75%; /* first third */
  background-color: var(--backgroundColor); /* new color */
clip-path: polygon(0 0, calc(100% - 80px) 0, 100% 100%, 0 100%);
  z-index: 0; /* behind content */
}

#header-orbit-logo{
    height: 42px;
}

/* .button:hover {
    background-color: var(--backgroundColor);
    color: var(--textColor);
} */
#login-profile.top-right-header {
  grid-area: loginProfile;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;        /* medium padding */
  position: relative;    /* for dropdown */
  width: 180px;          /* medium width */
  max-height: 38px;      /* medium height */
  background-color: var(--backgroundColor);
  border: 2px solid black;
  box-sizing: border-box;
      font-family: "Open Sans", sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
  z-index: 10;
}
#login-profile.top-right-header:hover {
    left: -5px;
    top: -5px;
    box-shadow: 1px 1px 0px 0px, 2px 2px 0px 0px, 3px 3px 0px 0px, 4px 4px 0px 0px, 5px 5px 0px 0px;
    border: 2px black solid;
    background-color: var(--backgroundColor); /* new color */
}

#profile-header-tab {
    position: absolute;
    top: 100%;           /* directly below parent */
    left: -2px;          /* or use right: 0; for right alignment */
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 180px;        /* match new parent width */
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    background-color: white;
    border: 2px solid black;
    border-top: none;
    padding: 8px 2px;    /* medium padding */
    font-size: 13px;     /* medium font */
    box-sizing: border-box;
    z-index: 10;
    box-shadow: 1px 1px 0px 0px, 2px 2px 0px 0px, 3px 3px 0px 0px, 4px 4px 0px 0px, 5px 5px 0px 0px;
    background-color: var(--backgroundColor); /* new color */

}

#profile-name {
    font-size: 15px;      /* medium text */
    color: var(--textColor);
    margin: 0px;
    grid-area: profilename;
    display: flex;
    width: 58px;          /* medium container */
    flex-direction: row-reverse;
    padding-right: 2px;
    justify-content: center;
    margin-left: 5px;
}

#profileIconSmall {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px black solid;
    margin: 2px;
    object-fit: cover; /* crop instead of stretching */
}



#login-signup{
    display: none;
    
}

#signup-page{
    margin-left: 2px;
}

#login-page{
    margin-right: 2px;
}

#socialQ{
    color: black;
    grid-area: socialQ;
    text-decoration: none;
    float: left;
    margin-top: 0px;
    margin: 1px;
    margin-left: 5px;
    font-family: sans-serif;
    z-index: 1;
}
#socialq{
    font-size: 30px;
}
.menu{

    color: white;
    text-decoration: none;
    /* border-radius: 2px; */
    margin: 2px;
    height: 20px;
}

.menu:active{
   /* Remove default styles for active links */
   color: inherit; /* Keeps the text color the same as the non-active state */
   background-color: transparent; /* Ensures no background color change */
   outline: none; /* Removes the focus outline */
   box-shadow: none; /* Removes any box shadow applied */
   text-decoration: none;
}

#menu_bar{
    /* display: grid; */
    display: none;
    background-color: black;
    grid-template-columns: repeat(4, 80px);
    gap: 2px;
    padding: 2px;
    text-align: center;
    width: 100%;
    height: 20px;
}

.header-menu-item {
    border-top: 1px solid grey;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;  /* Centers horizontally */
    align-items: center;      /* Centers vertically */
    margin-top: 2px;
    color: var(--textColor);
    text-decoration: none;
}


.profile-menu-item-link{
    text-decoration: none;  /* Removes the underline */
    color: var(--textColor);
}
.profile-menu-item-link:hover{
    text-decoration: underline;
}
#searchInputs{
    background-color: white;
    margin: 1px;
    border: solid black;
    padding: 2px;
}

#test-links{
    color: rgb(13, 58, 13);
}

#footer {
    position: relative;
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-template-areas: 
        "links company" "links socials";
    width: 80%;
    min-width: 900px; 
    padding: 7px;
    height: 100px;
    background-color: var(--textColor);        /* ← HEADER YELLOW */
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 
        0px 6px 12px -2px black, 
        0px 3px 7px -3px black;       /* ← HEADER SHADOW */
}

#footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 75%;                          /* ← HALF WIDTH FOR 2-COL LAYOUT */
    background-color: var(--backgroundColor);           /* ← HEADER BLUE */
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);  /* ← FLIPPED TRIANGLE */
    z-index: 0;
}



.footerlink{
    color: white;
    text-decoration: none;
}
.footerlink:hover{
    color: rgb(77, 59, 243);
}

#links {
    grid-area: links;
    z-index: 1;
}

#links1{
    color: white;
}

#links2{
    color: white;
}

#socials {
    grid-area: socials;
    z-index: 1;
    margin-top: auto;
    width: fit-content;
    white-space: nowrap;         /* ← NO WRAPPING */
    display: inline-block;  
}


#header-profile-settings {
    grid-area: profiletab; /* Same area as profileprofile */
    display: none; /* Hide it unless toggled */
    color: black;
    text-align: center;
    font-size: 14px;
    z-index: 10;
}

#header-profile-inbox {
    grid-area: profile;
    display: flex;
    color: black;
    z-index: 10;
}

/* #endregion */

/* ── Notification Bell ──────────────────────────────────── */
#notif-bell {
    grid-area: notifBell;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    max-height: 38px;
    align-self: center;
    padding: 0 12px;
    box-sizing: border-box;
    padding-bottom: 6px;
}

#notif-star-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
}

#notif-star {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

#notif-count {
    position: absolute;
    top: -4px;
    right: -10px;
    background: #000;
    color: var(--textColor);
    font-size: 9px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    box-sizing: border-box;
    letter-spacing: 0;
}

#notif-panel {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 280px;
    background: white;
    border: 2px solid #000;
    box-shadow: 4px 4px 0 #000;
    z-index: 9999;
    max-height: 360px;
    overflow-y: auto;
    scrollbar-width: none;
}
#notif-panel::-webkit-scrollbar { display: none; }

#notif-panel-header {
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #000;
    flex-shrink: 0;
}

.notif-item {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.5;
}
.notif-item:last-child { border-bottom: none; }
.notif-item:hover { background: #f5f5f5; }
.notif-item.notif-unread { font-weight: 700; background: #fffbe6; }
.notif-item.notif-unread:hover { background: #f5f0d0; }

.notif-empty {
    padding: 16px 12px;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* DONT CLICK TESTING ICON TEMP CSS DELETE AFTER ICONS ARE IMPLEMENTED */

.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
  }
  
  .tooltip .tooltip-text {
    visibility: hidden;
    opacity: 0;
    width: max-content;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 4px 8px;
    position: absolute;
    bottom: 125%; /* Show above the icon */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    white-space: nowrap;
    transition: opacity 0.2s ease-in-out;
    font-size: 12px;
  }
  
  .tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
  }

#icon-test-board {
    margin: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* optional: spacing between icons */
    align-items: flex-start;
  }
  
  #icon-test-board h2 {
    width: 100%;
  }

  #icon-test-board img,
  #icon-test-board svg {
    width: 64px;
    height: 64px;
  }

  /* HOW TO ADJUST THE SIZE LAYER THE HTML (IMG NESTED IN x-test-icon) */
  #finance-test-icon img,
  #finance-test-icon svg {
    width: 64px;
    height: 64px;
  }
  
.makeup-icon{
    height: 52px;
}


.brutalist-input {
  font-size: 16px;
  color: #000;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  position: relative;
  top: 0;
  left: 0;
  resize: none;
  transition: border-color 0.15s, box-shadow 0.15s, top 0.15s, left 0.15s;
}

.brutalist-input:focus {
  outline: none;
  border: 2px solid #000;
  box-shadow: 1px 1px 0 #000, 2px 2px 0 #000, 3px 3px 0 #000, 4px 4px 0 #000, 5px 5px 0 #000;
  top: -3px;
  left: -3px;
}


/* #region Universal Dropdown Select */
/*
  Usage:
    <div class="dropdown">
      <button class="dropdown-trigger" type="button">Choose one <span class="dropdown-arrow">▼</span></button>
      <div class="dropdown-panel">
        <div class="dropdown-option" data-value="a">Option A</div>
        <div class="dropdown-option" data-value="b">Option B</div>
      </div>
    </div>

  JS: initDropdowns() wires all .dropdown elements automatically.
  Read selected value: dropdown.dataset.value
  On change: listen for "sq:change" custom event on the .dropdown element.
    e.g.  el.addEventListener("sq:change", e => console.log(e.detail.value, e.detail.label));
*/

.dropdown {
    position: relative;
    display: flex;
    flex-direction: column;
    align-self: start; /* don't stretch in grid/flex rows — keeps top:100% flush with trigger */
    width: 100%;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    user-select: none;
    -webkit-user-select: none;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 8px 12px;
    background-color: white;
    color: #000;
    border: 1px solid #ccc;
    box-shadow: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    text-align: left;
    position: relative;
    top: 0;
    left: 0;
    transition: border-color 0.15s, box-shadow 0.15s, background-color 0.15s, color 0.15s, top 0.15s, left 0.15s;
}

.dropdown-trigger:hover {
    background-color: white;
    color: #000;
    border: 2px solid #000;
    box-shadow: 1px 1px 0 #000, 2px 2px 0 #000, 3px 3px 0 #000, 4px 4px 0 #000, 5px 5px 0 #000;
    top: -3px;
    left: -3px;
}

.dropdown-trigger:hover .dropdown-arrow {
    color: #000;
}

.dropdown.is-open .dropdown-trigger {
    background-color: var(--backgroundColor);
    color: var(--textColor);
    border: 2px solid #000;
    box-shadow: 1px 1px 0 #000, 2px 2px 0 #000, 3px 3px 0 #000, 4px 4px 0 #000, 5px 5px 0 #000;
    top: -3px;
    left: -3px;
}

.dropdown.is-open .dropdown-arrow {
    display: inline-block;
    transform: rotate(180deg);
    color: var(--textColor);
}

.dropdown-arrow {
    font-size: 10px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    color: #000;
}

.dropdown-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100%;
    width: max-content;
    box-sizing: border-box;
    background: white;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 220px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    z-index: 200;
    box-shadow: none;
}

.dropdown.is-open .dropdown-panel {
    display: block;
    border: 2px solid #000;
    border-top: none;
    box-shadow: 1px 1px 0 #000, 2px 2px 0 #000, 3px 3px 0 #000, 4px 4px 0 #000, 5px 5px 0 #000;
    top: calc(100% - 3px);
    left: -3px;
    width: 100%;
}

.dropdown-option {
    padding: 9px 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    transition: background 0.1s;
}

.dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-panel::-webkit-scrollbar {
    display: none;
}

.dropdown-option:hover {
    background-color: #f0f0f0;
}

.dropdown-option.is-selected {
    background-color: var(--backgroundColor);
    color: var(--textColor);
    font-weight: 700;
}

/* ── Checkbox (multi-select dropdown options) ── */
/*
  Usage:
    <div class="dropdown-option" data-value="value">
      <div class="checkbox"></div>
      Label
    </div>
  JS: toggle .selected class on the .checkbox div
*/
.checkbox {
    width: 14px;
    height: 14px;
    min-width: 14px;
    border: 2px solid #000;
    margin-right: 8px;
    cursor: pointer;
    background: white;
    flex-shrink: 0;
    transition: background 0.1s;
}
.checkbox.selected { background: #000; }

/* #endregion Universal Dropdown Select */

/* ── Mobile ────────────────────────────────────────────── */
@media (max-width: 768px) {
    /* Layout */
    .main-board {
        width: 95%;
        min-width: 0;
        margin: 8px auto;
    }

    /* Header */
    #header {
        width: 95%;
        min-width: 0;
        grid-template-columns: 1fr auto auto;
        grid-template-areas: "socialQ notifBell loginProfile";
        height: auto;
        padding: 8px 12px;
        margin-top: 6px;
        margin-bottom: 6px;
    }

    #header::before {
        width: 55%;
        clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 0 100%);
    }

    #socialq {
        font-size: 24px;
    }

    #login-profile.top-right-header {
        width: auto;
        min-width: 0;
        padding: 10px 12px;
        min-height: 44px;
    }

    #profile-name {
        display: none;
    }

    #profileIconSmall {
        width: 40px;
        height: 40px;
    }

    /* Footer */
    #footer {
        width: 95%;
        min-width: 0;
        grid-template-columns: 1fr;
        grid-template-areas: "links" "socials";
        height: auto;
        padding: 16px;
    }

    #footer::before {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 65%, 0 100%);
    }

    #socials {
        margin-top: 10px;
        white-space: normal;
    }

    /* Buttons — minimum 44px touch target */
    .button {
        font-size: 14px;
        padding: 0.5em 1em;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .button.hidden {
        display: none;
    }

    /* Dropdowns */
    .dropdown-trigger {
        min-height: 44px;
        padding: 10px 14px;
        font-size: 14px;
    }

    .dropdown-option {
        padding: 14px 12px;
        font-size: 15px;
    }

    .dropdown-panel {
        max-height: 280px;
    }

    /* Checkboxes — bigger tap area */
    .checkbox {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }

    /* Inputs */
    .brutalist-input {
        font-size: 16px; /* prevents iOS auto-zoom */
        padding: 12px;
        min-height: 44px;
    }

    input {
        font-size: 16px;
        min-height: 44px;
        padding: 10px;
    }

    /* Notification panel */
    #notif-bell {
        padding: 0 8px;
    }

    #notif-star, #notif-star-wrap {
        width: 32px;
        height: 32px;
    }

    #notif-panel {
        width: 90vw;
        right: -10px;
    }

    .notif-item {
        padding: 14px 12px;
        font-size: 14px;
    }
}

/* ── Toast notifications ─────────────────────────────────── */
.sq-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: var(--backgroundColor);
    color: #fff;
    padding: 10px 20px;
    border: 2px solid #000;
    box-shadow: 2px 2px 0 #000;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}
.sq-toast.sq-toast-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.sq-toast.sq-toast-error { background: #8b1a1a; }
.sq-toast.sq-toast-success { background: #1a5c2e; }
