/* Make all actionable controls clearly indicate that they are clickable. */
a,
button,
select,
[role="button"] {
    cursor: pointer;
}

button:disabled,
select:disabled,
[aria-disabled="true"] {
    cursor: not-allowed;
}

.admin-login {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    position: relative;
    z-index: 25;
    pointer-events: auto;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 50%;
    color: #d8e0f6;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.admin-login:hover {
    background: rgba(118, 87, 255, .24);
    border-color: #8c74ff;
    color: #fff;
}

.admin-login svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

@media (min-width: 951px) {
    .topbar {
        grid-template-columns: 210px 1fr auto auto;
    }
}

@media (max-width: 950px) {
    .topbar {
        grid-template-columns: 1fr auto auto auto;
        gap: 12px;
    }
}

@media (max-width: 620px) {
    .admin-login {
        width: 32px;
        height: 32px;
    }
}
