.btn .fas.fa-bell {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}



.notification-icon {
    display: inline-block;
}

.notification-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 400px; 
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1em;
    z-index: 9999;
    max-height: 400px;
    overflow-y: auto; 
    overflow-x: hidden; 
    box-sizing: border-box;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    margin-bottom: 0.5em;
}

.clear-btn {
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
}

.notification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5em 0;
    border-bottom: 1px solid #f1f1f1;
    flex-wrap: nowrap; 
    width: 100%; 
}

.notification-actions {
    display: flex;
    gap: 0.5em;
}

.notification-badge {
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 0.2em 0.4em;
    font-size: 0.75em;
    vertical-align: top;
    margin-left: -0.5em;
}

@media (max-width: 576px) {
    .notification-panel {
        width: 90%;
        left: 5%;
    }

    .notification-item {
        flex-wrap: wrap;
    }
}
