/* Hidden admin login hit target — visible on desktop hover only */
.admin-stealth-link {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 32px;
    z-index: 40;
    display: block;
    background: transparent;
    border: none;
    margin: 0;
    padding: 0;
    opacity: 0;
    cursor: default;
    text-decoration: none;
}

@media (min-width: 769px) {
    .admin-stealth-link:hover,
    .admin-stealth-link:focus-visible {
        opacity: 1;
        cursor: pointer;
        background: rgba(148, 163, 184, 0.28);
        box-shadow: inset 0 0 0 1px rgba(100, 116, 139, 0.4);
    }
}

@media (max-width: 768px) {
    .admin-stealth-link {
        display: none;
    }
}
