/* Notification Bell Icon in Navigation */

.notification-bell-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-bell-link #bellIcon {
    font-size: 24px;
    transition: all 0.3s ease;
}

/* Inactive state - grau */
.notification-bell-link.inactive #bellIcon {
    color: #666;
}

/* Active state - gold */
.notification-bell-link.active #bellIcon {
    color: #d4c4a8;
}

/* Hover effect */
.notification-bell-link:hover #bellIcon {
    transform: scale(1.1);
    color: #d4c4a8 !important;
}

/* Badge für "nicht aktiviert" Hinweis */
.notification-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Ring animation when notifications are active */
.notification-bell-link.active:hover #bellIcon {
    animation: ring 0.5s ease-in-out;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}
