/* ============================
   FLOATING LIST BUTTON (links)
   ============================ */

.boxemap-float-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #d60000;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    line-height: 54px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.boxemap-float-btn:hover {
    background: #b50000;
}

/* leichte Ausrichtungskorrektur */
.boxemap-float-btn span {
    display: block;
    margin-top: 5px;
}



/* ============================
   FLOATING DEVELOPER BADGE (rechts)
   ============================ */

.boxemap-dev-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 20px;
    text-decoration: none;
    z-index: 9999;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    transition: background 0.25s ease, opacity 0.25s ease;
    cursor: pointer;
}

.boxemap-dev-btn:hover {
    background: rgba(0, 0, 0, 0.70);
}