.accordion.filters .card-header,
.accordion.filters .card-body {
    background: #e9ecef;
}

.account-manager-wrapper {
    padding: 10px 5%;
    clear: both;
    display: inline-block;
    background: #374059;
    margin: 10px 0;
}

.account-manager-wrapper img {
    background: #FFF;
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 30px;
    float: left;
}

.account-manager-wrapper span {
    width: 170px;
    padding: 0 10px;
    display: inline-block;
}

.account-manager-wrapper * {
    color: #FFF;
}

.account-manager-wrapper em {
    color: #999;
    font-style: initial;
}

.comment {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
}

#comments-wrapper {
    word-wrap: break-word;
}

.top-alert {
    float: left;
    width: 100%;
    padding: 5px 20px;
    text-align: center;
}

.top-alert a {
    color: #FFF;
    font-size: 14px;
}

.top-alert a:hover {
    color: #ccc;
}

.top-alert.danger {
    background: #c5392a;
}

.top-alert.warning {
    background: #f09e1f;
}

.profile-circle {
    display: inline-block;
    background-color: #12A794;
    border-radius: 50%;
}

.profile-circle-inner {
    color: white;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    height: 30px;
    width: 30px;
    font-size: 15px;
    border-radius: 50%;
}

@keyframes pulse {
    0% {
        color: yellow;
    }
    50% {
        color: #ffcc00; /* Bright yellow */
    }
    100% {
        color: yellow;
    }
}

/* Style the pulsing icon */
.pulsing-icon {
    animation: pulse 1s infinite;
}