@keyframes bell-ring {
    0% { transform: rotate(0); }
    25% { transform: rotate(-15deg); }
    50% { transform: rotate(0); }
    75% { transform: rotate(15deg); }
    100% { transform: rotate(0); }
}

.bell-icon {
    display: inline-block;
    width: 14px;
    font-size: 14px !important;
    margin-right: 8px;
    animation: bell-ring 0.5s ease-in-out infinite;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.bell-icon.active {
    color: #50afea !important; ;
}

.bell-icon.inactive {
    color: #9e9e9e !important;
    animation: none;
}

.action-pills {
    display: flex;
    gap: 10px;
}

.action-pill {
    background-color: #ffffff;
    color: #4a4a4a;
    padding: 4px 16px;
    border-radius: 5px;
    border: 1px solid #EDECEC;
    font-size: 14px;
    font-weight: 500;
    z-index: 10;
    min-width: 100px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.action-pill:hover {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
}

.action-pill a {
    color: #4a4a4a;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.action-pill a:hover {
    color: #333333;
}

.action-icon {
    margin-right: 5px;
    font-size: 12px;
    position: relative;
    top: -1px;
}


