/* Botão flutuante do boss */
#boss-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 64px;
    height: 64px;
    background: rgba(0,0,0,0.65);
    border-radius: 50%;
    padding: 8px;
    cursor: pointer;
    z-index: 9999;
    backdrop-filter: blur(4px);
    box-shadow: 0 0 16px rgba(255,80,40,0.9);
    transition: 0.2s;
}
#boss-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#boss-button:hover {
    transform: scale(1.06);
}

/* Overlay para fechar ao clicar fora */
#boss-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.0); /* invisível, só capta o clique */
    z-index: 9997;
    display: none;
}

/* Painel lateral */
#boss-panel {
    position: fixed;
    top: 0;
    right: -320px; /* escondido */
    width: 320px;
    height: 100%;
    background: radial-gradient(circle at top, rgba(255,140,60,0.15), rgba(5,5,10,0.98));
    box-shadow: -4px 0 18px rgba(0,0,0,0.8);
    z-index: 9998;
    transition: right 0.3s ease;
    color: #fff;
    font-size: 13px;
    overflow-y: auto;
}
#boss-panel.open {
    right: 0; /* aparece */
}

.boss-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
#boss-panel-close {
    cursor: pointer;
    font-size: 18px;
}

/* Cada boss */
.boss-item {
    padding: 8px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Linha com nome + status à direita */
.boss-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 2px;
}

.boss-name {
    font-weight: bold;
    margin: 0;
}

/* Status inline ao lado do nome */
.boss-status-inline {
    font-size: 11px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

/* Linha compacta com respawn + next spawn */
.boss-meta-line {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    font-size: 11px;
    opacity: .85;
}

/* Bolinhas de status */
.boss-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 4px;
}
.boss-dot.online {
    background: #5bff6d; /* verde */
}
.boss-dot.offline {
    background: #ff5b5b; /* vermelha */
}
