.notification__container {
    max-width: 720px;
    margin: 20px auto;
}
.notification__nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
    flex-wrap: wrap;
    height: 50px;
}
.notification__filters {
    display: flex;
    gap: 1.5rem;
}
.notification__nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 600;
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 15px;
}
.notification__nav-link--active {
    color: #024735;
}
.notification__nav-link--active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #024735;
}
.notification__nav-badge {
    background: #024735;
    color: white;
    padding: 0 6px;
    border-radius: 10px;
    margin-left: 6px;
}
.notification__btn-mark {
    background: white;
    border: 1px solid #f1f5f9;
    padding: 0.5rem 0.8rem;
    border-radius: 5px;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 8px;
}
.notification__btn-mark:hover {
    background: #f1f5f9;
}
.notification__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.notification__item {
    background: #ffffff;
    border-radius: 5px;
    border: 1px solid #f1f5f9;
    transition: opacity 0.2s ease-in-out, transform 0.2s ease, box-shadow 0.2s ease;
}
.notification__item:hover {
    transform: translateY(-2px);
}
.notification__item-unread {
    border-left: 4px solid #024735;
    background: #f8f8fa;
}
.notification__item-wrapper {
    display: flex;
    padding: 1.25rem;
    gap: 1rem;
}
.notification__item-icon {
    width: 48px;
    height: 48px;
    background: #f8fafc;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
}
.notification__item-unread .notification__item-icon {
    background: #024735;
    color: #fff;
}
.notification__item-text {
    color: #1e293b;
    margin-bottom: 0.4rem;
}
.notification__item-unread .notification__item-text {
    font-weight: 500;
}
.notification__item-time {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #64748b;
}
.notification__item-time i {
    font-size: 0.75rem;
    display: flex;
}
.notification__empty {
    text-align: center;
    padding: 4rem 2rem;
    display: none;
}
.notification__empty-title {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
    .notification__container {
        padding: 0 20px;
    }
}