
/* OYICF Floating Badge Messenger-like Styling */
.oyicf-float-badge {
    position: fixed;
    bottom: 20px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(145deg, #000000, #434343);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.oyicf-float-badge:hover {
    transform: scale(1.05);
}
.oyicf-float-badge-right { right: 20px; }
.oyicf-float-badge-left { left: 20px; }

.oyicf-unread-counter {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ff3b30;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    padding: 4px 6px;
    border-radius: 999px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    min-width: 22px;
    text-align: center;
}

@media (max-width: 480px) {
    .oyicf-float-badge {
        width: 44px;
        height: 44px;
    }
    .oyicf-unread-counter {
        font-size: 12px;
        padding: 3px 5px;
        min-width: 18px;
    }
}
