#BeeperBox {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column-reverse;
    gap: 8px;
    width: 300px;
    z-index: 9999;
}
.UIBeeper_Full {
    animation: beepIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes beepIn {
    from { opacity: 0; transform: translateX(-20px) scale(0.96); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}
.UIBeep {
    background: #fff;
    border-radius: 12px;
    padding: 11px 12px;
    display: flex;
    align-items: center;
    gap: 11px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
    transition: transform 0.15s, box-shadow 0.15s;
}
.UIBeep::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    border-radius: 12px 0 0 12px;
    background: var(--accent, #7c3aed);
}
.UIBeep:hover {
    transform: translateX(3px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.UIBeep_Avatar {
    position: relative;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    margin-left: 4px;
}
.UIBeep_Avatar img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
.UIBeep_Icon_Badge {
    position: absolute;
    bottom: -2px;
    right: -4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent, #7c3aed);
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.UIBeep_Icon_Badge .monac_icons {
    font-size: 8px;
    color: #fff;
    line-height: 1;
}
.UIBeep_Body {
    flex: 1;
    min-width: 0;
}
.UIBeep_Title {
    font-size: 13px;
    color: #1a1a2e;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.UIBeep_Title .uname {
    font-weight: 500;
    color: var(--accent-name, #7c3aed);
}
.UIBeep_Meta {
    font-size: 11px;
    color: #aaa;
    margin-top: 2px;
}
.UIBeep_Preview {
    font-size: 11.5px;
    color: #777;
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.beeper_x {
    margin-left: auto;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    color: #aaa;
    font-size: 10px;
    transition: background 0.15s, color 0.15s;
    text-decoration: none;
}

.beeper_x:hover {
    background: #fee2e2;
    color: #ef4444;
    border-color: #fecaca;
}
/* Acento por tipo de notificación */
.beep-star        { --accent: #f59e0b; --accent-name: #d97706; }
.beep-comment_post{ --accent: #2563eb; --accent-name: #2563eb; }
.beep-points      { --accent: #10b981; --accent-name: #059669; }
.beep-follow      { --accent: #7c3aed; --accent-name: #7c3aed; }
.beep-post        { --accent: #0d9488; --accent-name: #0d9488; }
.beep-share       { --accent: #8b5cf6; --accent-name: #7c3aed; }
.beep-blue_ball   { --accent: #3b82f6; --accent-name: #2563eb; }
.beep-voto_       { --accent: #f97316; --accent-name: #ea580c; }
.beep-comment_resp{ --accent: #06b6d4; --accent-name: #0891b2; }
.beep-photo       { --accent: #ec4899; --accent-name: #db2777; }
.beep-wall_post   { --accent: #64748b; --accent-name: #475569; }
.beep-w_comment   { --accent: #6366f1; --accent-name: #4f46e5; }
.beep-w_like      { --accent: #ef4444; --accent-name: #dc2626; }
.beep-medal       { --accent: #eab308; --accent-name: #ca8a04; }
/* El nombre usa el color del acento */
.UIBeep_Title .uname { color: var(--accent-name); font-weight: 500; }
/* Badge usa el color del acento */
.UIBeep_Icon_Badge { background: var(--accent); }

#audio-permission-toast {
    position: fixed;
    bottom: 20px; 
    right: 20px; 
    z-index: 9999;
    background: var(--color-bg); 
    color: var(--color-text);
    padding:.5rem 1rem;
}
#audio-permission-toast span {
    margin-right: 1rem;
}
.audio-button {
    color:#fff; 
    border:none; 
    padding:6px 12px; 
    border-radius:4px; 
    cursor:pointer;
}
#audio-yes {
    background:#4CAF50; 
}
#audio-no {
    background:#888;
}
