.notification-skeleton {
    display: flex;
    gap: 10px;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.skeleton-icon {
    width: 25px;
    height: 25px;
    background: #e3e3e3;
    border-radius: 50%;
    animation: pulse 1.4s infinite ease-in-out;
}

.skeleton-lines {
    flex: 1;
}

.skeleton-line {
    height: 10px;
    background: #e3e3e3;
    margin-bottom: 6px;
    border-radius: 5px;
    animation: pulse 1.4s infinite ease-in-out;
}

.skeleton-line.short {
    width: 60%;
}

@keyframes pulse {
    0% { opacity: .4; }
    50% { opacity: 1; }
    100% { opacity: .4; }
}

.notification_header {
    display: flex;
    justify-content: space-between;
    padding: 10px 10px 0 10px;
}

.notification_close {
    cursor: pointer;
    color: #999;
}

.notification_read_all {
    cursor: pointer;
    color: #999;
    display: flex;
    justify-content: start;
    padding-left: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ccc;
}

.notification_read_all .material-icons {
    font-size: 18px;
    margin-right: 8px;
}

.notification_close:hover {
    color: #000;
}

.notification_read_all:hover {
    color: #333;
    background-color: #f5f5f5;
}

.notification_container {
    position: absolute;
    background: #fff;
    margin-right: 3px;
    color: black;
    width: 350px;
    right: 0;
    height: 350px;
    margin-top: 8px;
    border-radius: 10px;
    box-shadow: 10px 10px 35px rgba(0, 0, 0, 0.125),
    -10px -10px 35px rgba(0, 0, 0, 0.125);
    display: flex;
    flex-direction: column;
}

.notification_container:before {
    content: '';
    position: absolute;
    top: -20px;
    right: 15px;
    border: 10px solid;
    border-color: transparent transparent #fff transparent;
}

.notification_list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    overflow-y: auto;
}

.notification_title {
    margin-bottom: 5px;
    white-space: normal;
}

.notification_item {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.notification_item.notification_lida {
    cursor: default;
}

.notification_text {
    flex-grow: 1;
    margin-bottom: 5px;
}

.notification_item:hover,
.show_all:hover {
    background-color: #f5f5f5;
}

.notification_item a {
    text-decoration: none;
    font-weight: 400;
    white-space: normal;
    color: #1976d2;
    transition: color 0.2s ease;
}

.notification_item a:hover {
    color: #1565c0;
    text-decoration: underline;
}

.notification_item a:visited {
    color: #7b1fa2;
}

.notification_item a:visited:hover {
    color: #6a1b9a;
}

.data_hora {
    font-size: 9px;
    color: #999;
}

.notification_bottom {
    display: flex;
    justify-content: space-between;
}

.show_all {
    padding: 10px;
    border-top: 1px solid #ccc;
    cursor: pointer;
    text-align: center;
}

.icon_link i {
    font-size: 15px;
    margin-right: 5px;
    color: #999;
}

#toggleAlertaBtn {
    margin-left: auto;
    margin-right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #f4a100;
}

#statusIcon {
    font-size: 20px;
}