.notification-container {
    width: 100%;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header {
    padding: 24px 24px 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
}

.header h1 {
    font-size: 24px;
    font-weight: 600;
    color: #212529;
}

.mark-all-read {
    color: #000000;
    font-weight: 500;
    font-size: 13px;
    line-height: 80%;
}

.notifications-list {
    padding: 0;
}

.notification-item {
    padding-top: 16px;
    padding-bottom: 5px;
    align-items: stretch !important;
}




.package-icon.cancelled {
    stroke: #dc3545;
}

.notification-content {
    flex: 1;
    margin-right: 16px;
}



.notification-message {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.4;
}



.unread-indicator {
    width: 8px;
    height: 8px;
    background-color: #dc3545;
    border-radius: 50%;
    position: absolute;
    right: 24px;
    top: 28px;
}

.time-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 100px;
}