/* Floating workspace action */
.overlay-actions {
    position: fixed;
    right: 22px;
    bottom: calc(22px + 2vh);
    z-index: 20;
    display: flex;
    gap: 12px;
    align-items: center;
}

.overlay-fab {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px 11px 13px;
    background:
        linear-gradient(180deg, #123a55 0%, #08263a 100%);
    color: #f8fafc;
    border: 4px solid #050505;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 5px 5px 0 #050505, 0 12px 32px rgba(0, 0, 0, 0.48);
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.overlay-fab:hover {
    background: linear-gradient(180deg, #164d70 0%, #0b314b 100%);
    transform: translate(-1px, -1px);
    box-shadow: 6px 6px 0 #050505, 0 14px 34px rgba(0, 0, 0, 0.54);
}

.overlay-fab-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: transparent;
    border: 3px solid #f8fafc;
    border-radius: 3px;
    background: transparent;
}

.overlay-fab-icon::before {
    content: "";
    position: absolute;
    left: 6px;
    right: 6px;
    top: -7px;
    height: 8px;
    border: 3px solid #f8fafc;
    border-bottom: 0;
    border-radius: 4px 4px 0 0;
}
