#auth-side-strip {
    width: 240px;
    left: -250px;
    top: 150px;
    background: linear-gradient(180deg, #f4f9f8 0%, #e8f3f1 100%);
    transition: left 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    z-index: 100000;
    flex-wrap: wrap;
    position: absolute;
    flex-direction: column;
    gap: 0.8em;
    padding: 14px;
    color: #2c3038;
    border-radius: 0 14px 14px 0;
    box-shadow: 4px 0 24px rgba(58, 190, 176, 0.12);
    border: 1px solid rgba(58, 190, 176, 0.18);
    font-family: inherit;
}

#auth-side-strip.opened {
    left: 0;
    box-shadow: 6px 0 30px rgba(58, 190, 176, 0.15);
}

#auth-side-strip a {
    color: #2c3038;
    padding: 8px 10px 8px 42px;
    border-radius: 10px;
    border: 1px solid rgba(58, 190, 176, 0.15);
    transition: all 0.25s ease;
    font-size: 14px;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 0;
    isolation: isolate;
}

#auth-side-strip a::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: #2da89b;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 8px;
    z-index: 0;
    transition: background 0.25s ease;
}
#auth-side-strip a:hover {
    border-color: rgba(58, 190, 176, 0.5);
    background-color: rgba(58, 190, 176, 0.1);
    transform: translateX(3px);
    box-shadow: 0 2px 10px rgba(58, 190, 176, 0.15);
    color: #2da89b;
}

#auth-side-strip a:hover::before {
    background-color: #3abeb0;
}
#auth-side-strip a.icon-agencies::before {
    background-image: url("/wp-content/themes/angelsense/images/icons/icon-agencies.svg");
}

#auth-side-strip a.icon-cc::before {
    background-image: url("/wp-content/themes/angelsense/images/icons/icon-cc.svg");
}
#auth-side-strip a.icon-shop::before {
    background-image: url("/wp-content/themes/angelsense/images/icons/icon-shop.svg");
}

#auth-side-strip a.icon-amazon::before {
    background-image: url("/wp-content/themes/angelsense/images/icons/icon-amazon.svg");
}

#auth-side-strip a.icon-device::before {
    background-image: url("/wp-content/themes/angelsense/images/icons/icon-device.svg");
}


.auth-bottom-strip {
    line-height: 1.5em;
    color: #2c3038;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f4f7f9 100%);
    position: fixed;
    left: 12px;
    bottom: 70px;
    padding: 0;
    font-size: 1.2em;
    width: 350px;
    display: flex;
    flex-wrap: wrap;
    border-radius: 14px;
    overflow: hidden;
    z-index: 100000000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(58, 190, 176, 0.15);
    font-family: inherit;
}

#supportPageURL {
    z-index: -100;
    position: absolute;
    top: -100px;
    left: -100%;
}
#support-purchase-for {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
#support-purchase-for div {
    width: 100%;
}
.auth-bottom-strip div {
    display: flex;
    padding: 2px 8px;
    width: 100%;
    justify-content: center;
    align-items: center;
}

#support-bar-links,
#support-bar-time {
    display: flex;
    background: linear-gradient(135deg, #f7fafa 0%, #eef3f5 100%);
    justify-content: center;
    margin: 4px 6px;
    border-radius: 10px;
    padding: 4px 8px;
    gap: 10px;
}

.auth-bottom-strip div.purchase-for {
    background: linear-gradient(135deg, #5ab456 0%, #4a9e47 100%); color: white;
    border-radius: 10px 10px 0 0;
    padding: 6px 8px;
    font-weight: 600;
}

.auth-bottom-strip div.purchase-for-no-one {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%); color: white;
    border-radius: 10px 10px 0 0;
    padding: 6px 8px;
    font-weight: 600;
}

.auth-bottom-strip a {
    text-decoration: none;
    background: linear-gradient(135deg, #3abeb0 0%, #2da89b 100%);
    border-radius: 12px;
    color: white;
    padding: 3px 10px;
    box-shadow: 0 2px 8px rgba(58, 190, 176, 0.25);
    transition: all 0.25s ease;
    font-weight: 500;
    font-size: 0.85em;
}
.auth-bottom-strip a:hover {
    box-shadow: 0 4px 14px rgba(58, 190, 176, 0.35);
    transform: translateY(-1px);
}
.auth-bottom-strip a.auth-logout{
    margin-left: 8px;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.25);
    position: relative;
    padding-left: 28px;
}
.auth-bottom-strip a.auth-logout::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url(/wp-content/themes/angelsense/images/icons/logout.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1);
}
.auth-bottom-strip a.auth-logout:hover {
    box-shadow: 0 4px 14px rgba(231, 76, 60, 0.35);
}
a.copy-btn,
#toggle-support-menu {
    background-size: 22px;
    margin: 0 12px 0 0;
    box-shadow: none;
    padding: 4px;
    background-color: #2c3038;
    background-position: center center;
    background-repeat: no-repeat;
    width: 40px;
    border-radius: 10px !important;
    transition: all 0.25s ease;
}
a.copy-btn:hover,
#toggle-support-menu:hover {
    background-color: #3abeb0;
    box-shadow: 0 2px 10px rgba(58, 190, 176, 0.3);
}
.copy-btn{
    border: none;
    display: none; /* Asked to remove for now */
    background-image: url(/wp-content/themes/angelsense/images/icons/icon-copy.svg);
}
#toggle-support-menu {
    background-image: url(/wp-content/themes/angelsense/images/icons/icon-menu.png);
}

#extend-timeout{
    margin: 0 12px 0 8px;
    box-shadow: 0 2px 8px rgba(4, 190, 112, 0.25);
    padding: 3px 16px 3px 30px;
    border-radius: 8px !important;
    font-size: 0.85em;
    position: relative;
}
#extend-timeout::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url(/wp-content/themes/angelsense/images/icons/extra-time.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1);
}
#extend-timeout:hover {
    box-shadow: 0 4px 14px rgba(4, 190, 112, 0.35);
    transform: translateY(-1px);
}
.auth-bottom-strip #time-left {
    display: inline-block;
    margin: 0;
    background: linear-gradient(135deg, #1a1e24 0%, #0d1015 100%);
    padding: 4px 8px;
    color: #03ff03;
    height: 33px;
    width: 110px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* --- Purchase-for name with ID tooltip on hover --- */
.sa-purchase-name-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    position: relative;
}

.sa-purchase-name-wrap .sa-purchase-email {
    cursor: default;
}

.sa-purchase-id-tooltip {
    display: none;
    font-size: 0.7em;
    font-weight: 400;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 2px 8px;
    border-radius: 6px;
    white-space: nowrap;
    align-items: center;
    gap: 5px;
}

.sa-purchase-name-wrap:hover .sa-purchase-id-tooltip {
    display: inline-flex;
}

.sa-copy-id-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    padding: 1px 5px;
    line-height: 1;
    transition: background 0.2s;
    pointer-events: auto;
}

.sa-copy-id-btn:hover {
    background: rgba(255,255,255,0.25);
}

@media all and (max-width: 990px) {
    .auth-bottom-strip {display: none;}
}