#vc-notification-container {
    position: fixed;
    z-index: 999999;
    pointer-events: none;
    width: 100%;
    display: flex;
    justify-content: center; /* Centers the badge horizontally */
}

/* Desktop Styles */
@media (min-width: 481px) {
    #vc-notification-container {
        bottom: 30px; /* Centered in the footer area */
        left: 0;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    #vc-notification-container {
        top: 20px; /* Pinned to the top to avoid bottom chat widgets */
        bottom: auto;
        left: 0;
        padding: 0 10px;
    }
}

.vc-glass-badge {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border-top: 4px solid #0056b3; /* Vein Center Blue */
    padding: 12px 18px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: inherit;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    max-width: 350px;
    width: auto;
}

/* Animation: Slide down from top on mobile, Slide up from bottom on desktop */
@media (max-width: 480px) {
    .vc-glass-badge { transform: translateY(-50px); }
    .vc-glass-badge.active { transform: translateY(0); opacity: 1; }
}

@media (min-width: 481px) {
    .vc-glass-badge { transform: translateY(50px); }
    .vc-glass-badge.active { transform: translateY(0); opacity: 1; }
}

.vc-badge-icon {
    font-size: 20px;
    color: #0056b3;
    display: flex;
    align-items: center;
}

.vc-badge-content {
    font-size: 13px;
    color: #444;
    line-height: 1.4;
}